Skip to content

Instantly share code, notes, and snippets.

Created August 8, 2016 23:33
Show Gist options
  • Save anonymous/8bf92c4a4c6029718875d572abd1298b to your computer and use it in GitHub Desktop.
Save anonymous/8bf92c4a4c6029718875d572abd1298b to your computer and use it in GitHub Desktop.
ELK Web Design // source https://jsbin.com/madedo
<!DOCTYPE html>
<html>
<head>
<title>ELK Web Design</title>
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400,800" rel="stylesheet" type="text/css">
<style id="jsbin-css">
/*Copy over your previous HTML code below
*/body {
font-size: 18px;
font-family: "Open Sans", sans-serif;
}
h1 {
font-size: 2em;
border-bottom: 4px solid black;
}
h2 {
font-size: 1.5em;
padding: .8em 0;
color: #fffebb;
border-bottom: 4px solid #fffebb;
}
h1, h2 {
text-transform: uppercase;
display: inline-block;
font-weight: 800;
}
nav {
font-size: 1.8em;
float: right;
}
nav a {
text-decoration: none;
color: black;
margin: 1.8em;
display: inline-block;
}
div {
font-size: 1.2em;
width: 46%;
display: inline-block;
padding: 2%;
}
#hero {
display: block;
margin: 0 auto;
width: 480px;
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
#about {
float: left;
}
#services {
float: right;
}
section {
background: #222222;
color: white;
overflow: auto;
}
li {
float: left;
width: 50%;
height: 6em;
border: 3px solid #222222;
text-align: center;
line-height: 6em;
color: black;
background: white;
}
footer {
text-align: center;
padding: 1em 0;
clear: both;
}
</style>
</head>
<body>
<header>
<h1>ELK Web Design</h1>
<nav>
<a href="#">work</a>
<a href="#">about</a>
<a href="#">contact</a>
</nav>
<div id="hero">
<img src="http://i.imgur.com/pdsjjxD.jpg" alt="abstract elk horns on light yellow background" title="abstract elk horns">
</div>
</header>
<section>
<div id="about">
<h2>Who We Are</h2>
<p>Elk provides clean and innovative sites for small businesses, artists, and professionals.</p>
</div>
<div id="services">
<h2>What We Do</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>Responsive</li>
<li>Visual Design</li>
</ul>
</div>
</section>
<footer>© 2014 ELK</footer>
<script id="jsbin-source-css" type="text/css">/*Copy over your previous HTML code below
*/body {
font-size: 18px;
font-family: "Open Sans", sans-serif;
}
h1 {
font-size: 2em;
border-bottom: 4px solid black;
}
h2 {
font-size: 1.5em;
padding: .8em 0;
color: #fffebb;
border-bottom: 4px solid #fffebb;
}
h1, h2 {
text-transform: uppercase;
display: inline-block;
font-weight: 800;
}
nav {
font-size: 1.8em;
float: right;
}
nav a {
text-decoration: none;
color: black;
margin: 1.8em;
display: inline-block;
}
div {
font-size: 1.2em;
width: 46%;
display: inline-block;
padding: 2%;
}
#hero {
display: block;
margin: 0 auto;
width: 480px;
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
#about {
float: left;
}
#services {
float: right;
}
section {
background: #222222;
color: white;
overflow: auto;
}
li {
float: left;
width: 50%;
height: 6em;
border: 3px solid #222222;
text-align: center;
line-height: 6em;
color: black;
background: white;
}
footer {
text-align: center;
padding: 1em 0;
clear: both;
}</script>
</body>
</html>
/*Copy over your previous HTML code below
*/body {
font-size: 18px;
font-family: "Open Sans", sans-serif;
}
h1 {
font-size: 2em;
border-bottom: 4px solid black;
}
h2 {
font-size: 1.5em;
padding: .8em 0;
color: #fffebb;
border-bottom: 4px solid #fffebb;
}
h1, h2 {
text-transform: uppercase;
display: inline-block;
font-weight: 800;
}
nav {
font-size: 1.8em;
float: right;
}
nav a {
text-decoration: none;
color: black;
margin: 1.8em;
display: inline-block;
}
div {
font-size: 1.2em;
width: 46%;
display: inline-block;
padding: 2%;
}
#hero {
display: block;
margin: 0 auto;
width: 480px;
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
#about {
float: left;
}
#services {
float: right;
}
section {
background: #222222;
color: white;
overflow: auto;
}
li {
float: left;
width: 50%;
height: 6em;
border: 3px solid #222222;
text-align: center;
line-height: 6em;
color: black;
background: white;
}
footer {
text-align: center;
padding: 1em 0;
clear: both;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment