Last active
February 25, 2021 12:15
-
-
Save martypenner/7107765 to your computer and use it in GitHub Desktop.
"Coming Soon" page (self-contained)
This file contains 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 class="no-js"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>Coming Soon</title> | |
<meta name="viewport" content="width=device-width"> | |
<style> | |
body { | |
background: #fafafa; | |
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
color: #aaaaaa; | |
} | |
.hero-unit { | |
margin: 50px auto 0 auto; | |
display: table; | |
font-size: 18px; | |
font-weight: 200; | |
line-height: 30px; | |
border-radius: 6px; | |
padding: 60px; | |
max-width: 600px; | |
} | |
.hero-unit h1 { | |
font-size: 30px; | |
line-height: 1.2; | |
letter-spacing: -1px; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="hero-unit"> | |
<h1>Coming Soon</h1> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment