Skip to content

Instantly share code, notes, and snippets.

@BjornFridal
Forked from deshion/app_offline.htm
Last active November 4, 2020 17:46
Show Gist options
  • Save BjornFridal/d5fc1a98f2440063be5cb14f4b71e929 to your computer and use it in GitHub Desktop.
Save BjornFridal/d5fc1a98f2440063be5cb14f4b71e929 to your computer and use it in GitHub Desktop.
Basic maintenance page for IIS
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title>Down for maintenance</title>
<style type="text/css">
body { background:#fbfbfb; font-family:arial;}
h1, p { text-align:center; }
p { font-size: 18px; line-height: 1.5; }
img { margin:auto; display:block; }
.content { background:#ffffff; border-radius:4px; box-shadow:0 1px 20px rgba(0,0,0,0.2);margin:60px auto 0; padding:20px; max-width: 80%; width: 700px; }
</style>
</head>
<body>
<div class="content">
<h1>Down for maintenance</h1>
<p>We're just doing some maintenance and should be back up shortly.</p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment