Advertisement
Guest User

Untitled

a guest
Oct 17th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Challenge: Fancy font families</title>
  6. <style> body {
  7. font-family: cursive;
  8. }
  9. #flinstones {color: rgb(43, 0, 255);
  10. font-family: sans-serif
  11.  
  12. }
  13.  
  14. #jetsons {background-color: red;
  15. font-family: cursive;
  16.  
  17. }
  18.  
  19. #addams {background-color: green;
  20. font-family: Fantasy;
  21.  
  22. }
  23. </style>
  24. </head>
  25. <body>
  26.  
  27. <p>Some fun theme songs of well known TV families...</p>
  28.  
  29. <h4>The Flinstones</h4>
  30. <p id="flinstones">
  31. Meet the Flintstones<br>
  32. They're the modern stone age family<br>
  33. From the town of Bedrock<br>
  34. They're a page right of history</p>
  35.  
  36. <h4>The Jetsons</h4>
  37. <p id="jetsons">
  38. Meet George Jetson,<br>
  39. His Boy Elroy,<br>
  40. Daughter Judy,<br>
  41. Jane, His wife
  42. </p>
  43.  
  44. <h4>The Addams Family</h4>
  45. <p id="addams">
  46. They're creepy and they're kooky,<br>
  47. mysterious and spooky<br>
  48. They're all together ooky,<br>
  49. the Addams Family
  50. </p>
  51. </body>
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement