<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Page</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 40px auto;
padding: 0 20px;
color: #333;
}
h1 { color: #2c3e50; }
p { line-height: 1.6; }
</style>
</head>
<body>
<h1>Hello, World!</h1>
<p>This is a generic HTML page. Edit it to get started.</p>
</body>
</html>