Advertisement
Guest User

Untitled

a guest
Mar 29th, 2016
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
  2. <style>
  3. .red-text {
  4. color: red;
  5. }
  6.  
  7. h2 {
  8. font-family: Lobster, Monospace;
  9. }
  10.  
  11. p {
  12. font-size: 16px;
  13. font-family: Monospace;
  14. }
  15.  
  16. .thick-green-border {
  17. border-color: green;
  18. border-width: 10px;
  19. border-style: solid;
  20. border-radius: 50%;
  21. }
  22.  
  23. .smaller-image {
  24. width: 100px;
  25. }
  26. </style>
  27.  
  28. <h2 class="red-text">CatPhotoApp</h2>
  29.  
  30. <p>Click here for <a href="#">cat photos</a>.</p>
  31.  
  32. <a href="#"><img class="smaller-image thick-green-border" alt="A cute orange cat lying on its back" src="https://bit.ly/fcc-relaxing-cat"></a>
  33.  
  34. <p>Things cats love:</p>
  35. <ul>
  36. <li>cat nip</li>
  37. <li>laser pointers</li>
  38. <li>lasagna</li>
  39. </ul>
  40. <p>Top 3 things cats hate:</p>
  41. <ol>
  42. <li>flea treatment</li>
  43. <li>thunder</li>
  44. <li>other cats</li>
  45. </ol>
  46. <form action="/ sumbit-cat-photo">
  47. <input type="text" placeholder="cat photo URL">
  48. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement