Advertisement
Lio-code

07 - CSS : responsive web design

Mar 9th, 2020
125
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 lang="en">
  3.  
  4. <head>
  5.  
  6. <title>FindThePrecious</title>
  7.  
  8. <meta charset="UTF-8">
  9.  
  10. <meta name="author" content="Lionel">
  11.  
  12. <meta name="description"
  13. content="A website to look for a bunch of fellows">
  14.  
  15. <meta name="viewport"
  16. content="width=device-width, initial-scale=1.0">
  17.  
  18. <link rel="stylesheet" href="style.css">
  19. </head>
  20.  
  21. <body>
  22.  
  23. <nav>
  24. <ul>
  25. <li class="a">FindThePrecious.com</li>
  26. <li class="a">Fellows</li>
  27. <li class="a">Contact us</li>
  28. </ul>
  29. </nav>
  30. <section>
  31. <div class="carousel"></div>
  32. </section>
  33. <section>
  34. <h2 class=fellows>Fellows wanted dead (or alive
  35. if you want to eat them later)</h2>
  36. </section>
  37. <section id=art>
  38. <article></article>
  39. <article></article>
  40. <article></article>
  41. </section>
  42.  
  43. <hr>
  44.  
  45. <form>
  46. <h2 id="contactus">Contact us</h2>
  47. <input type="email" placeholder="@">
  48. <input type="text" placeholder="&#8962;">
  49. <input type="text"
  50. placeholder="I have seen one of them">
  51. <textarea placeholder="Your message"></textarea>
  52. </form>
  53. </body>
  54.  
  55. </html>
  56.  
  57. -------------------------------------------------------------------------------------------------------
  58.  
  59. nav{
  60. height: 40px;
  61. background-color:#3a3a3a;
  62.  
  63. }
  64.  
  65. ul {
  66. list-style: none;
  67. margin: 0;
  68. }
  69.  
  70.  
  71. li {
  72. display: inline-block;
  73. color: white;
  74. margin-right: 20px;
  75. margin-top:10px;
  76.  
  77. }
  78.  
  79. .carousel {
  80. background-color:lightgrey;
  81. height: 150px;
  82. width: 100%
  83. }
  84.  
  85. article{
  86. display: inline-block;
  87. width: 400px;
  88. height: 300px;
  89. background:lightgrey;
  90.  
  91.  
  92. }
  93.  
  94. #art {
  95. text-align:center;
  96. }
  97.  
  98. h2 {
  99. font-size: 18px;
  100. }
  101.  
  102.  
  103. input, textarea{
  104. width: 80%;
  105. margin: 0 auto;
  106. display: block;
  107. margin-top: 10px;
  108. }
  109.  
  110. #contactus {
  111. text-align: left;
  112. }
  113.  
  114. .fellows {
  115. text-align: center;
  116. }
  117.  
  118. @media (max-width:961px) {#art,.carousel{display: none;}}
  119. @media (max-width:961px) {.fellows{font-size: 23px;}}
  120. @media (max-width:961px) {#contactus{text-align: center;}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement