Advertisement
Guest User

Untitled

a guest
Feb 18th, 2020
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.67 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. <hr>
  40.  
  41. <h2 id="contact">Contact us</h2>
  42. <form>
  43.  
  44. <div>
  45. <label for="mail"></label>
  46. <input type="email" id="mail" placeholder="@">
  47. </div>
  48. <div>
  49. <label for="home"></label>
  50. <input type="text" id="home" placeholder="&#8962;">
  51. </div>
  52. <div>
  53. <select id="one-of-them">
  54. <option value="one-of-them">I have seen one of them :</option>
  55. </select>
  56. </div>
  57. <div>
  58. <label for="msg"></label>
  59. <textarea id="msg" placeholder="Your message"></textarea>
  60. </div>
  61.  
  62. </form>
  63. </body>
  64. </html>
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71. body {
  72. font-family: 'Courier New', Courier, monospace;
  73. font-size: 10px;
  74. }
  75.  
  76. nav {
  77. background-color: #000;
  78. color: #fff;
  79. height: 40px;
  80.  
  81. }
  82.  
  83. .carousel {
  84. background-color: #999;
  85. height: 300px;
  86. }
  87.  
  88. #find {
  89. font-size: 25px;
  90. padding-top: 5px;
  91. font-weight: bold;
  92. }
  93.  
  94. #fellows {
  95. margin-right: 20px;
  96. margin-left: 30px;
  97.  
  98. }
  99.  
  100. #sect-art {
  101. display: flex;
  102. justify-content: space-around;
  103. align-items: center;
  104. padding-bottom: 10%;
  105. padding-top: 2%
  106. }
  107.  
  108. #fellows-wanted {
  109. text-align: center;
  110. font-size: 25px;
  111.  
  112. }
  113.  
  114. span {
  115. font-size: 20px;
  116. }
  117.  
  118. #contact {
  119. font-size: 25px;
  120. padding-bottom: 10px;
  121.  
  122. }
  123.  
  124.  
  125. ul{
  126. list-style-type: none;
  127. font-size: 0;
  128. }
  129.  
  130. ul li{
  131. display: inline-block;
  132. font-size: 15px;
  133. }
  134.  
  135. h3,.hidden {
  136. font-size: smaller;
  137. visibility: hidden;
  138. }
  139.  
  140. form {
  141. margin-left: 250px;
  142. }
  143.  
  144. input, textarea {
  145. width: 1000px;
  146. padding: 4px;
  147. vertical-align: top;
  148. font: 2em sans-serif;
  149. border: 1.5px solid #000;
  150. border-radius: 3px;
  151. }
  152.  
  153. textarea {
  154. height: 100px;
  155. }
  156. select {
  157. width: 1010px;
  158. padding: 4px;
  159. border : 1.5px solid #bdbbbb;
  160. font: 2em sans-serif;
  161. margin-top: 10px;
  162. margin-right: 20px;
  163. border-radius: 3px;
  164.  
  165. }
  166.  
  167. label {
  168. display: block;
  169. margin-bottom: 10px;
  170. margin-right: 20px;
  171. vertical-align: top;
  172. text-align: right;
  173. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement