Advertisement
Lio-code

06 - CSS : box model

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