29 lines
788 B
HTML
29 lines
788 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Hello, World!</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 3rem;
|
|
background-color: #f9f9f9;
|
|
color: #333;
|
|
text-align: center;
|
|
}
|
|
h1 {
|
|
color: #007acc;
|
|
}
|
|
p {
|
|
font-size: 1.2rem;
|
|
margin-top: 1rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Behold!</h1>
|
|
<p>The Cosmos is all that is or was or ever will be. Our feeblest contemplations of the Cosmos stir us — there is a tingling in the spine, a catch in the voice, a faint sensation, as if a distant memory, of falling from a height. We know we are approaching the greatest of mysteries. </p>
|
|
</body>
|
|
</html>
|