Last active
July 18, 2024 18:56
-
-
Save FernandoCutire/25c649739ef75fd7c14a38c6b7aad183 to your computer and use it in GitHub Desktop.
simple html apache site
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Topicos Site is Online</title> | |
<style> | |
body { | |
font-family: Arial, sans-serif; | |
background-color: #f0f0f0; | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
height: 100vh; | |
margin: 0; | |
} | |
.container { | |
background-color: #fff; | |
padding: 2rem; | |
border-radius: 10px; | |
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | |
text-align: center; | |
} | |
h1 { | |
font-size: 2rem; | |
margin-bottom: 1rem; | |
} | |
p { | |
font-size: 1rem; | |
color: #666; | |
} | |
a { | |
color: #1a73e8; | |
text-decoration: none; | |
} | |
a:hover { | |
text-decoration: underline; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<h1>Topicos Site is Online!</h1> | |
<p>Thank you for visiting. We're happy to announce that the Topicos site is now online. Click <a href="#">here</a> to explore our content.</p> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment