Created
May 22, 2018 22:57
-
-
Save caitfriedlander/7116b05bab855dad29c6cc5c70cbfc4e to your computer and use it in GitHub Desktop.
Elk Web Design // source http://jsbin.com/numurir
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> | |
<head> | |
<title>Elk Web Design</title> | |
<style id="jsbin-css"> | |
body { | |
font-size: 18px; | |
font-family: Arial; | |
} | |
h1 { | |
font-size: 36px; | |
} | |
h2 { | |
font-size: 27px; | |
padding: 14px 0px; | |
} | |
h1, h2 { | |
text-transform: uppercase; | |
border-bottom: 4px solid black; | |
display: inline-block; | |
} | |
img { | |
display: block; | |
margin: 0 auto; | |
} | |
ul { | |
list-style: none; | |
} | |
footer { | |
text-align: center; | |
padding: 18px 0; | |
} | |
</style> | |
</head> | |
<body> | |
<header> | |
<h1>ELK Web Design</h1> | |
<nav> | |
<a href="#">Work</a> | |
<a href="#">About</a> | |
<a href="#">Contact</a> | |
</nav> | |
<img src="http://i.imgur.com/pdsjjxD.jpg"> | |
</header> | |
<section id="about"> | |
<h2>Who We Are</h2> | |
<p>ELK provides clean and innovative sites for small businesses, artists, and professionals.</p> | |
</section> | |
<section id="services"> | |
<h2>How We Do It</h2> | |
<ul> | |
<li>HTML</li> | |
<li>CSS</li> | |
<li>Responsive</li> | |
<li>Visual</li> | |
<li>Design</li> | |
</ul> | |
</section> | |
<footer> | |
<p>© 2017 ELK</p> | |
</footer> | |
<script id="jsbin-source-css" type="text/css">body { | |
font-size: 18px; | |
font-family: Arial; | |
} | |
h1 { | |
font-size: 36px; | |
} | |
h2 { | |
font-size: 27px; | |
padding: 14px 0px; | |
} | |
h1, h2 { | |
text-transform: uppercase; | |
border-bottom: 4px solid black; | |
display: inline-block; | |
} | |
img { | |
display: block; | |
margin: 0 auto; | |
} | |
ul { | |
list-style: none; | |
} | |
footer { | |
text-align: center; | |
padding: 18px 0; | |
}</script> | |
</body> | |
</html> |
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
body { | |
font-size: 18px; | |
font-family: Arial; | |
} | |
h1 { | |
font-size: 36px; | |
} | |
h2 { | |
font-size: 27px; | |
padding: 14px 0px; | |
} | |
h1, h2 { | |
text-transform: uppercase; | |
border-bottom: 4px solid black; | |
display: inline-block; | |
} | |
img { | |
display: block; | |
margin: 0 auto; | |
} | |
ul { | |
list-style: none; | |
} | |
footer { | |
text-align: center; | |
padding: 18px 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment