Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.91 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. <div class="container-fluid">
  30.   <h2 class="red-text text-center">CatPhotoApp</h2>
  31.  
  32.   <p>Click here for <a href="#">cat photos</a>.</p>
  33.  
  34.   <a href="#"><img class="smaller-image thick-green-border" src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back. "></a>
  35.  
  36.   <img src="https://bit.ly/fcc-running-cats" class="img-responsive" alt="Three kittens running towards the camera. ">
  37.   <div class="row">
  38.       <div class="col-xs-4">
  39. </div>
  40.   <button class="btn btn-block btn-primary">Like</button>
  41.           <div class="col-xs-4">
  42. </div>
  43.   <button class="btn btn-block btn-info">Info</button>
  44.               <div class="col-xs-4">
  45. </div>
  46.   <button class="btn btn-block btn-danger">Delete</button>
  47.   </div>
  48.   </div>
  49.   <p>Things cats love:</p>
  50.   <ul>
  51.     <li>cat nip</li>
  52.     <li>laser pointers</li>
  53.     <li>lasagna</li>
  54.   </ul>
  55.   <p>Top 3 things cats hate:</p>
  56.   <ol>
  57.     <li>flea treatment</li>
  58.     <li>thunder</li>
  59.     <li>other cats</li>
  60.   </ol>
  61.   <form action="/submit-cat-photo">
  62.     <label><input type="radio" name="indoor-outdoor"> Indoor</label>
  63.     <label><input type="radio" name="indoor-outdoor"> Outdoor</label>
  64.     <label><input type="checkbox" name="personality"> Loving</label>
  65.     <label><input type="checkbox" name="personality"> Lazy</label>
  66.     <label><input type="checkbox" name="personality"> Crazy</label>
  67.     <input type="text" placeholder="cat photo URL" required>
  68.     <button type="submit">Submit</button>
  69.   </form>
  70. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement