Skip to content

Instantly share code, notes, and snippets.

@feliperomero3
Created May 25, 2022 23:23
Show Gist options
  • Save feliperomero3/95d4110183ecb7b8f62f44caea1f99a0 to your computer and use it in GitHub Desktop.
Save feliperomero3/95d4110183ecb7b8f62f44caea1f99a0 to your computer and use it in GitHub Desktop.
HTML: Simple Maintenance Page
<!doctype html>
<html>
<head>
<title>Site Maintenance</title>
<meta charset="utf-8"/>
<meta name="robots" content="noindex"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body { text-align: center; padding: 20px; font: 20px Helvetica, sans-serif; color: #efe8e8; }
@media (min-width: 768px){
body{ padding-top: 150px; }
}
h1 { font-size: 50px; }
article { display: block; text-align: left; max-width: 650px; margin: 0 auto; }
a { color: #dc8100; text-decoration: none; }
a:hover { color: #efe8e8; text-decoration: none; }
</style>
</head>
<body bgcolor="0e273b">
<article>
<h1>We&rsquo;ll be back soon!</h1>
<div>
<p>Sorry for the inconvenience but we&rsquo;re performing some maintenance at the moment, we&rsquo;ll be back online shortly!</p>
<p>&mdash; The Team</p>
</div>
</article>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment