Created
June 17, 2012 14:54
-
-
Save robyoung/2944745 to your computer and use it in GitHub Desktop.
Giraffes
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
<html> | |
<head> | |
<style type="text/css"> | |
body { | |
padding: 10px; | |
} | |
h1 { | |
font-family: Ariel; | |
font-size: 15px; | |
color: red; | |
} | |
#first { | |
background-color: blue; | |
} | |
.first { | |
background-color: yellow; | |
} | |
.patches { | |
background-color: green; | |
} | |
</style> | |
</head> | |
<body> | |
<h1>Giraffes</h1> | |
<p id="first" class="location">The giraffe is a very tall animal that lives in Africa.</p> | |
<p class="patches">The giraffe has patches of colour on it's fur.</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment