monicao
11/7/2015 - 11:04 PM

Girls Learning Code: Live Code

Girls Learning Code: Live Code

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;
}
<!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>