Advertisement
Guest User

Untitled

a guest
Feb 18th, 2020
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.68 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Find the precious!</title>
  6. <link rel="stylesheet" href="style2.css">
  7. </head>
  8. <body>
  9. <nav>
  10. <ul>
  11. <li id="find">FindThePrecious.com</li>
  12. <li id="fellows">Fellows</li>
  13. <li>Contact us</li>
  14. </ul>
  15. </nav>
  16. <div>
  17.  
  18. <div class="carousel"></div>
  19.  
  20. </div>
  21.  
  22. <section>
  23. <h2 id="fellows-wanted">Fellows wanted dead<span> (or alive if you want to eat them later)</span></h2>
  24.  
  25. </section>
  26. <div id="sect-art">
  27.  
  28. <article>
  29. <h3>The Wizard</h3>
  30. <img src="https://via.placeholder.com/300" alt="wizard"></article>
  31. <article>
  32. <h3>The Hobbit</h3>
  33. <img src="https://via.placeholder.com/300" alt="hobbit"></article>
  34. <article>
  35. <h3>Yummy Dwarf</h3>
  36. <img src="https://via.placeholder.com/300" alt="dwarf"></article>
  37. </div>
  38.  
  39.  
  40.  
  41.  
  42. <hr>
  43.  
  44.  
  45. <h2 id="contact">Contact us</h2>
  46. <form>
  47.  
  48. <div>
  49. <label for="mail"></label>
  50. <input type="email" id="mail" placeholder="@">
  51. </div>
  52. <div>
  53. <label for="home"></label>
  54. <input type="text" id="home" placeholder="&#8962;">
  55. </div>
  56. <div>
  57. <select id="one-of-them">
  58. <option value="one-of-them">I have seen one of them :</option>
  59. </select>
  60. </div>
  61. <div>
  62. <label for="msg"></label>
  63. <textarea id="msg" placeholder="Your message"></textarea>
  64. </div>
  65.  
  66. </form>
  67. </body>
  68. </html>
  69.  
  70.  
  71.  
  72. body {
  73. font-family: 'Courier New', Courier, monospace;
  74. font-size: 10px;
  75. }
  76.  
  77. nav {
  78. background-color: #000;
  79. color: #fff;
  80. height: 40px;
  81.  
  82. }
  83.  
  84. .carousel {
  85. background-color: #999;
  86. height: 300px;
  87. }
  88.  
  89. #find {
  90. font-size: 25px;
  91. padding-top: 5px;
  92. font-weight: bold;
  93. }
  94.  
  95. #fellows {
  96. margin-right: 20px;
  97. margin-left: 30px;
  98.  
  99. }
  100.  
  101. #sect-art {
  102. display: flex;
  103. justify-content: space-around;
  104. align-items: center;
  105. padding-bottom: 10%;
  106. padding-top: 2%
  107. }
  108.  
  109. #fellows-wanted {
  110. text-align: center;
  111. font-size: 25px;
  112.  
  113. }
  114.  
  115. span {
  116. font-size: 20px;
  117. }
  118.  
  119. #contact {
  120. font-size: 25px;
  121. padding-bottom: 10px;
  122.  
  123. }
  124.  
  125.  
  126. ul{
  127. list-style-type: none;
  128. font-size: 0;
  129. }
  130.  
  131. ul li{
  132. display: inline-block;
  133. font-size: 15px;
  134. }
  135.  
  136. h3,.hidden {
  137. font-size: smaller;
  138. visibility: hidden;
  139. }
  140.  
  141. form {
  142. margin-left: 250px;
  143. }
  144.  
  145. input, textarea {
  146. width: 1000px;
  147. padding: 4px;
  148. vertical-align: top;
  149. font: 2em sans-serif;
  150. border: 1.5px solid #000;
  151. border-radius: 3px;
  152. }
  153.  
  154. textarea {
  155. height: 100px;
  156. }
  157. select {
  158. width: 1010px;
  159. padding: 4px;
  160. border : 1.5px solid #bdbbbb;
  161. font: 2em sans-serif;
  162. margin-top: 10px;
  163. margin-right: 20px;
  164. border-radius: 3px;
  165.  
  166. }
  167.  
  168. label {
  169. display: block;
  170. margin-bottom: 10px;
  171. margin-right: 20px;
  172. vertical-align: top;
  173. text-align: right;
  174. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement