Skip to content

Instantly share code, notes, and snippets.

@monicao
Created November 7, 2015 23:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save monicao/35dcac2e0f34e39144a5 to your computer and use it in GitHub Desktop.
Save monicao/35dcac2e0f34e39144a5 to your computer and use it in GitHub Desktop.
Girls Learning Code: Live Code
<!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>
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