Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en" dir="ltr">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Css Classes project</title>
  6. <style type="text/css">
  7. #headline {text-align: center; color: blue;}
  8. .emphasis {font-style: italic;}
  9. .important-point {text-decoration: underline;}
  10. h2 {text-align:center;}
  11. .place-description {font-family: Verdana; color: purple;}
  12. .person-description {color: purple;}
  13. .top-favorite {font-weight: bold; color: red;}
  14. </style>
  15. </head>
  16. <h2 id="">Howdy</h2>
  17. <h1 id="headline"> Main Headline!</h1>
  18. <body>
  19. <p class="place-description">Places i would like to visit: <span class="important-point">Home</span> </p>
  20. <p class="person-description">Person i admire: me</p>
  21. <ol>
  22. <li class="top-favorite"><span class="emphasis">apple</span></li>
  23. <li class="top-favorite">watermelon</li>
  24. <li class="top-favorite">cantaloupe</li>
  25. <li class="top-favorite">grape</li>
  26. <li class="top-favorite">pear</li>
  27. </ol>
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement