Advertisement
Guest User

Untitled

a guest
Oct 20th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html>
  4. <head>
  5. <title>Josh's Typography Homework</title>
  6. <style>
  7. .title {
  8. font-family: sans-serif;
  9. font-size: 50px;
  10. font-weight: 250px;
  11. height: 50%;
  12. width: 25%;
  13. overflow: hidden;
  14. text-transform: uppercase;
  15. padding: 20px;
  16. margin: 0;
  17. top: 0;
  18. left: 0;
  19. letter-spacing: 18px;
  20. text-align: center;
  21. background-color: black;
  22. color:aqua;
  23. text-emphasis-color: yellow;
  24. }
  25. .h2 {
  26. font-family: sans-serif;
  27. font-size: 25px;
  28. font-weight: 100px;
  29. text-transform:uppercase;
  30. padding: 20px;
  31. color:aqua;
  32. background-color: black;
  33. text-align: center;
  34.  
  35. }
  36. a:link {
  37. color:hotpink;
  38. }
  39. a:hover {
  40. color:yellow
  41. }
  42. </style>
  43. </head>
  44.  
  45. <body>
  46. <div class="title">
  47. <h1> JOSH's TYPOGRAPHY HOMEWORK</h1>
  48. </div>
  49.  
  50. <div class="h2">
  51. <h2><b><a href="Http://www.google.com">click here to go to google</a></b></h2>
  52. <p> Check out my sweet hover text and stuff</p>
  53. </div>
  54. </body>
  55. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement