Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <title> cats are cool </title>
  6.  
  7. <link rel="stylesheet" href="style.css">
  8.  
  9. </head>
  10.  
  11. <body>
  12. <br>
  13. <b class="title">cats</b>
  14. <br>
  15. <br>
  16.  
  17. <div class="cat-images">
  18. <div class="loki">
  19. <img src="loki.jpg" alt="loki">
  20. <p class="pcaption"> this is loki</p>
  21. </div>
  22. </div>
  23.  
  24. <ul>
  25. <li class="header"><b>my cat</b></li>
  26. <ul>
  27. <li> his name is loki</li>
  28. <li> he is a rag doll mix</li>
  29. <li> he is all<b class="black"> black </b></li>
  30. <li> i no longer own him ): </li>
  31. </ul>
  32. </li>
  33. </ul>
  34. <br>
  35. <br>
  36. <b class="header">some cool things about rag doll cats</b>
  37. <ul>
  38. <li>they are lap cats ^-^</li>
  39. <li>they are like dogs (they follow you and love being playful)</li>
  40. <li>they are usually very quiet, but if you have a mix like i did they can be very vocal</li>
  41. </ul>
  42. <br>
  43. <b class="header">here are some other cats</b>
  44. <ul>
  45. <li>birman</li>
  46. <li>american wirehair</li>
  47. <li>bombay cat</li>
  48. </ul>
  49. <br>
  50. <br>
  51.  
  52. <div class="cat-images">
  53. <div class="cat">
  54. <img src="birman.jpg" alt="birman">
  55. <p class="pcaption">birman</p>
  56. </div>
  57. <div class="cat">
  58. <img src="bombay.jpg" alt="bombay">
  59. <p class="pcaption">bombay</p>
  60. </div>
  61. <div class="cat">
  62. <img src="american_wirehair.jpg" alt="american wirehair">
  63. <p class="pcaption">american wirehair</p>
  64. </div>
  65. </div>
  66.  
  67.  
  68.  
  69.  
  70.  
  71. style
  72.  
  73.  
  74. .cat-images {
  75. width: 100%;
  76. display: flex;
  77. justify-content: center;
  78. margin: 0 auto;
  79. }
  80.  
  81.  
  82. .cat-images img {
  83. height: 200px;
  84. width: 300px;
  85. padding: 20px;
  86. background-color: #f67e7d;
  87. }
  88.  
  89. #cat-images #cat {
  90. display:inline-block;
  91. }
  92.  
  93.  
  94.  
  95. li {
  96. font-size: 14px;
  97. }
  98.  
  99. .header {
  100. color: #843b62;
  101. font-size: 16px;
  102. }
  103.  
  104. body {
  105. background-color: #ffb997;
  106. color: #f67e7d;
  107. font-family: "verdana";
  108. }
  109.  
  110. .title {
  111. font-size: 40px;
  112. text-align: center;
  113. }
  114.  
  115.  
  116. .black {
  117. color: black;
  118. }
  119.  
  120. .pcaption {
  121. color: #843b62;
  122. font-size: 15px;
  123. text-align: center;
  124. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement