Advertisement
ndburrus

Make Images Mobile Responsive @francis951

Aug 9th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. // @francis951
  2. // Make Images Mobile Responsive
  3.  
  4. <link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
  5. <style>
  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.  
  19. .thick-green-border {
  20. border-color: green;
  21. border-width: 10px;
  22. border-style: solid;
  23. border-radius: 50%;
  24. }
  25.  
  26. .smaller-image {
  27. width: 100px;
  28. }
  29. </style>
  30. <div class="container-fluid">
  31. <h2 class="red-text">CatPhotoApp</h2>
  32.  
  33. <p>Click here for <a href="#">cat photos</a>.</p>
  34.  
  35. <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. "> // need closing </a> here!
  36.  
  37. <a href="#"><img class="smaller-image thick-green-border"src="https://bit.ly/fcc-running-cats."}</a>
  38.  
  39. <p>Things cats love:</p>
  40. <ul>
  41. <li>cat nip</li>
  42. <li>laser pointers</li>
  43. <li>lasagna</li>
  44. </ul>
  45. <p>Top 3 things cats hate:</p>
  46. <ol>
  47. <li>flea treatment</li>
  48. <li>thunder</li>
  49. <li>other cats</li>
  50. </ol>
  51. <form action="/submit-cat-photo">
  52. <label><input type="radio" name="indoor-outdoor"> Indoor</label>
  53. <label><input type="radio" name="indoor-outdoor"> Outdoor</label>
  54. <label><input type="checkbox" name="personality"> Loving</label>
  55. <label><input type="checkbox" name="personality"> Lazy</label>
  56. <label><input type="checkbox" name="personality"> Crazy</label>
  57. <input type="text" placeholder="cat photo URL" required>
  58. <button type="submit">Submit</button>
  59. </form>
  60. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement