Advertisement
Guest User

Untitled

a guest
May 17th, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.38 KB | None | 0 0
  1.  
  2. <link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
  3. <style>
  4.   .red-text {
  5.     color: red;
  6.   }
  7.  
  8.   h2 {
  9.     font-family: Lobster, Monospace;
  10.   }
  11.  
  12.   p {
  13.     font-size: 16px;
  14.     font-family: Monospace;
  15.   }
  16.  
  17.   .thick-green-border {
  18.     border-color: green;
  19.     border-width: 10px;
  20.     border-style: solid;
  21.     border-radius: 50%;
  22.   }
  23.  
  24.   .smaller-image {
  25.     width: 100px;
  26.   }
  27. </style>
  28.  
  29. <h2 class="red-text">CatPhotoApp</h2>
  30.  
  31. <p>Click here for <a href="#">cat photos</a>.</p>
  32.  
  33. <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>
  34.  
  35. <p>Things cats love:</p>
  36. <ul>
  37.   <li>cat nip</li>
  38.   <li>laser pointers</li>
  39.   <li>lasagna</li>
  40. </ul>
  41. <p>Top 3 things cats hate:</p>
  42. <ol>
  43.   <li>flea treatment</li>
  44.   <li>thunder</li>
  45.   <li>other cats</li>
  46. </ol>
  47. <form action="/submit-cat-photo">
  48.   <label><input type="radio" name="indoor-outdoor" checked> Indoor</label>
  49.   <label><input type="radio" name="indoor-outdoor"> Outdoor</label>
  50.   <label><input type="checkbox" name="personality"> Loving</label>
  51.   <label><input type="checkbox" name="personality"> Lazy</label>
  52.   <label><input type="checkbox" name="personality"> Energetic</label>
  53.   <input type="text" placeholder="cat photo URL" required>
  54.   <button type="submit">Submit</button>
  55. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement