Advertisement
juliusDum

box model Jules

Mar 5th, 2020
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.97 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="style.css">
  7.     </head>
  8.     <body>
  9.         <nav>
  10.             <ul>
  11.                 <li>FindThePrecious.com</li>
  12.                 <li class="color">Fellows</li>
  13.                 <li>Contact us</li>
  14.             </ul>
  15.         </nav>
  16.         <section>
  17.             <div class="carousel"></div>
  18.         </section>
  19.         <section>
  20.             <h2>Fellows wanted dead (or alive if you want to eat them later)</h2>
  21.         </section>
  22.         <section class="images">
  23.             <article></article>
  24.             <article></article>
  25.             <article></article>
  26.         </section>
  27.         <hr>
  28.         <form>
  29.             <h2 class="formulaire">Contact us</h2>  
  30.         <ul>
  31.             <li><input id="email" type="email" placeholder="@"></li>
  32.             <li><input id="home" type="text" placeholder="&#8962;"></li>
  33.             <li><input id="défilant" type="text" placeholder="I have seen one of them"></li>
  34.             <li><textarea id="message" placeholder="Your message"></textarea></li>
  35.             </ul>
  36.         </form>
  37.     </body>
  38. </html>
  39. * {
  40.     margin: 0px;
  41.     padding: 0px;
  42. }
  43.  
  44. nav ul {
  45.     display: flex;
  46.     list-style-type: none;
  47.     padding: 0 3px;
  48.     background-color: #696969;
  49. }
  50.  
  51.  
  52. li {
  53.     padding: 6px;
  54. }
  55.  
  56. .color {
  57.     background-color: #E7E4E4;
  58.  
  59. }
  60.  
  61. .carousel {
  62.     height: 120px;
  63.     background-color: #EFECEB;
  64. }
  65.    
  66. h2 {
  67.     padding: 30px;
  68.     text-align: center;
  69. }
  70. .images {
  71.     text-align: center;
  72. }
  73. article {
  74.     height: 200px;
  75.     width: 25%;
  76.     padding: 20px;
  77.     margin: 1%;
  78.     display: inline-block;
  79.     background-color: #EFECEB;
  80. }
  81.  
  82. hr {
  83.     color: black;
  84. }
  85.  
  86. form {
  87.     text-align: center;
  88. }
  89.  
  90. .formulaire {
  91.     text-align: left;
  92.     font-size: 40px
  93. }
  94.  
  95. #email {
  96.     width: 70%;
  97. }
  98.  
  99. #home {
  100.     width: 70%;
  101. }
  102.  
  103. #défilant {
  104.     width: 70%;
  105.     border-radius: 3px;
  106. }
  107.  
  108. #message {
  109.     height: 200px;
  110.     width: 90%}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement