Skip to content

Instantly share code, notes, and snippets.

@okurka12
Created August 2, 2025 01:36
Show Gist options
  • Select an option

  • Save okurka12/6961f29b13a496e0b6341cb66f7c1fe0 to your computer and use it in GitHub Desktop.

Select an option

Save okurka12/6961f29b13a496e0b6341cb66f7c1fe0 to your computer and use it in GitHub Desktop.
dark, sad landing page to replace your discontinued website
<!DOCTYPE html>
<html lang="en">
<head>
<!-- credits to chatgpt -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Farewell</title>
<style>
body {
margin: 0;
background-color: #121212;
color: #dddddd;
font-family: 'Merriweather', serif;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
padding: 2rem;
background: linear-gradient(180deg, #121212 0%, #1c1c1c 100%);
}
.container {
max-width: 600px;
}
h1 {
font-size: 2rem;
color: #bbbbbb;
margin-bottom: 1rem;
}
p {
font-size: 1.1rem;
line-height: 1.6;
color: #999999;
}
.small {
margin-top: 2rem;
font-size: 0.9rem;
color: #555;
}
a {
color: #666;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>This site has gone dark.</h1>
<p>
The project once here has reached its end.<br>
Thank you to everyone who was part of the journey.<br>
Silence remains.
</p>
<p class="small">
If you need to reach me: [email protected]
</p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment