Guest User

Untitled

a guest
Oct 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style type="text/css">
  4. body {
  5. padding: 10px;
  6. }
  7.  
  8. h1 {
  9. font-family: Ariel;
  10. font-size: 15px;
  11. color: red;
  12. }
  13.  
  14. #first {
  15. background-color: blue;
  16. }
  17.  
  18. .first {
  19. background-color: yellow;
  20. }
  21.  
  22. .patches {
  23. background-color: green;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <h1>Giraffes</h1>
  29.  
  30. <p id="first" class="location">The giraffe is a very tall animal that lives in Africa.</p>
  31.  
  32. <p class="patches">The giraffe has patches of colour on it's fur.</p>
  33. </body>
  34. </html>
Add Comment
Please, Sign In to add comment