Skip to content

Instantly share code, notes, and snippets.

@stupidchief
Created April 28, 2017 09:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stupidchief/38cd8f150e47ee94379a5224f5a0b62f to your computer and use it in GitHub Desktop.
Save stupidchief/38cd8f150e47ee94379a5224f5a0b62f to your computer and use it in GitHub Desktop.
Coming Soon Page (responsive)
<!doctype html>
<title>Coming Soon</title>
<style>
body {
text-align: center;
padding: 0;
}
h1 {
font-size: 30px;
}
body {
font: 20px Helvetica, sans-serif;
color: #333;
}
article {
display: block;
text-align: left;
width: 100%;
margin: 0 auto;
}
@media (min-width: 769px) {
body {
text-align: center;
padding: 150px;
}
h1 {
font-size: 50px;
}
body {
font-size: 20px;
}
article {
width: 650px;
}
}
a {
color: #44c8f5;
text-decoration: underline;
}
a:hover {
color: #44c8f5;
text-decoration: none;
}
</style>
<article>
<div>
<div align="center">
<img src="logo.png">
<h1>Coming soon!</h1>
<p>Email Us: <a href="mailto:us@us.com">us@us.com</a></p>
</div>
<p></p>
</div>
</article>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment