DrRandom

freecodecamp

Sep 29th, 2020
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.39 KB | None | 0 0
  1. <link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
  2. <style>
  3.   .smaller-image{
  4.     width:100px;
  5.   }
  6.   .red-text {
  7.     color: red;
  8.   }
  9.  
  10.   h2 {
  11.     font-family: Lobster, monospace;
  12.   }
  13.  
  14.   p {
  15.     font-size: 16px;
  16.     font-family: monospace;
  17.   }
  18. </style>
  19.  
  20. <h2 class="red-text">CatPhotoApp</h2>
  21. <main>
  22.   <p class="red-text">Click here to view more <a href="#">cat photos</a>.</p>
  23.  
  24.   <a href="#"><img class="smaller-image" src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
  25.  
  26.   <div>
  27.     <p>Things cats love:</p>
  28.     <ul>
  29.       <li>cat nip</li>
  30.       <li>laser pointers</li>
  31.       <li>lasagna</li>
  32.     </ul>
  33.     <p>Top 3 things cats hate:</p>
  34.     <ol>
  35.       <li>flea treatment</li>
  36.       <li>thunder</li>
  37.       <li>other cats</li>
  38.     </ol>
  39.   </div>
  40.  
  41.   <form action="https://freecatphotoapp.com/submit-cat-photo">
  42.     <label><input type="radio" name="indoor-outdoor" checked> Indoor</label>
  43.     <label><input type="radio" name="indoor-outdoor"> Outdoor</label><br>
  44.     <label><input type="checkbox" name="personality" checked> Loving</label>
  45.     <label><input type="checkbox" name="personality"> Lazy</label>
  46.     <label><input type="checkbox" name="personality"> Energetic</label><br>
  47.     <input type="text" placeholder="cat photo URL" required>
  48.     <button type="submit">Submit</button>
  49.   </form>
  50. </main>
  51.  
Add Comment
Please, Sign In to add comment