Created
February 26, 2017 03:20
-
-
Save Jorge-Cano/2daf6276cf183132744b39fd2d0f27c7 to your computer and use it in GitHub Desktop.
ELK Web Design // source http://jsbin.com/setusos
This file contains hidden or 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> | |
<link rel="stylesheet" type="text/css" href="css/style.css"> | |
<style id="jsbin-css"> | |
body { | |
color: black; | |
font-size: 18px; | |
font-family: Arial; | |
} | |
h1, h2 { | |
text-transform: uppercase; | |
border-bottom: 4px solid black; | |
display: inline-block; | |
color: black; | |
font-family: Arial; | |
font-size: 2em; | |
} | |
h1 { | |
font-size: 2em; | |
} | |
h2 { | |
font-size: 1.5em; | |
padding: .8em, 0; | |
} | |
img { | |
display: block; | |
margin: 0 auto; | |
} | |
footer { | |
text-align: center; | |
padding: 1em 0; | |
} | |
</style> | |
</head> | |
<body> | |
<header> | |
<h1>Elk Web Design</h1> | |
<img src="http://i.imgur.com/pdsjjxD.jpg" alt="Elk Image"> | |
</header> | |
<div ="about"> | |
<h2>About</h2> | |
<p>"ELK provides clean and innovative sites for small businesses, artists, and professionals."</p> | |
</div> | |
<div ="services"> | |
<h2>Services</h2> | |
<p>"HTML, CSS, Responsive, Visual Design."</p> | |
</div> | |
<footer>© 2017 Elk </footer> | |
<script id="jsbin-source-css" type="text/css">body { | |
color: black; | |
font-size: 18px; | |
font-family: Arial; | |
} | |
h1, h2 { | |
text-transform: uppercase; | |
border-bottom: 4px solid black; | |
display: inline-block; | |
color: black; | |
font-family: Arial; | |
font-size: 2em; | |
} | |
h1 { | |
font-size: 2em; | |
} | |
h2 { | |
font-size: 1.5em; | |
padding: .8em, 0; | |
} | |
img { | |
display: block; | |
margin: 0 auto; | |
} | |
footer { | |
text-align: center; | |
padding: 1em 0; | |
} | |
</script> | |
</body> | |
</html> |
This file contains hidden or 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 { | |
color: black; | |
font-size: 18px; | |
font-family: Arial; | |
} | |
h1, h2 { | |
text-transform: uppercase; | |
border-bottom: 4px solid black; | |
display: inline-block; | |
color: black; | |
font-family: Arial; | |
font-size: 2em; | |
} | |
h1 { | |
font-size: 2em; | |
} | |
h2 { | |
font-size: 1.5em; | |
padding: .8em, 0; | |
} | |
img { | |
display: block; | |
margin: 0 auto; | |
} | |
footer { | |
text-align: center; | |
padding: 1em 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment