Created
November 7, 2015 23:04
-
-
Save monicao/35dcac2e0f34e39144a5 to your computer and use it in GitHub Desktop.
Girls Learning Code: Live Code
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> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Made with Thimble</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<h1>Monica's Favourite Animals</h1> | |
<h3> | |
Elephant | |
</h3> | |
<p class="first-paragraph"> | |
The elephant is a large mammal from Africa and Asia. | |
</p> | |
<a href="https://en.wikipedia.org/wiki/Elephant"> | |
<img src="http://www.stevescottsite.com/elephant.jpg" height="200px"> | |
</a> | |
<p class="last-paragraph"> | |
Below elephant!!! | |
</p> | |
</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 { | |
font-family: Papyrus,fantasy; | |
color: white; | |
background-color: #b52929; | |
} | |
.last-paragraph { | |
font-size: 48px; | |
} | |
h1, h3 { | |
color: pink; | |
text-align: center; | |
} | |
h1 { | |
color: aliceblue; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment