Advertisement
ahamelt

html +css

Feb 28th, 2020
912
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.21 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="bg">Fellows</li>
  13.                 <li>Contact us</li>
  14.             </ul>
  15.         </nav>
  16.         <section>
  17.             <div class="carousel">
  18.                 <img src="https://via.placeholder.com/150" alt="banniere">
  19.            
  20.             </div>
  21.         </section>
  22.         <section class="fellows">
  23.             <h2>Fellows wanted dead <p>(or alive if you want to eat them later)</p></h2>
  24.         </section>
  25.         <section class="article">
  26.             <article><img src="https://via.placeholder.com/300" alt="test"></article>
  27.             <article><img src="https://via.placeholder.com/300" alt="test"></article>
  28.             <article><img src="https://via.placeholder.com/300" alt="test"></article>        
  29.         </section>
  30.         <hr>
  31.         <form>
  32.             <h2>Contact us</h2>
  33.             <input type="email" placeholder="@">
  34.             <input type="text" placeholder="&#8962;">
  35.             <input type="text" placeholder="I have seen one of them">
  36.             <textarea placeholder="Your message"></textarea>
  37.         </form>
  38.     </body>
  39. </html>
  40.  
  41.  
  42.  
  43.  
  44.  
  45. CSS
  46.  
  47. body{
  48.     font-size: 14px;
  49. }
  50. nav ul li{
  51.     display: inline-block;
  52.     vertical-align: middle;
  53.     color: white;
  54.     margin: 10px 10px 10px 3px;
  55. }
  56.  
  57. nav{
  58.     background: grey;
  59. }
  60.  
  61. nav ul{
  62.     padding: 0;
  63. }
  64.  
  65. ul .bg:hover{
  66.     background: darkgrey;
  67.  
  68. }
  69.  
  70. .carousel{
  71.     border: 1px solid black;
  72.     }
  73. h2, h2 p{
  74.     display: inline;
  75. }
  76. h2 p{
  77.     font-size: 12px;
  78. }
  79.  
  80. .fellows{
  81.     text-align: center;
  82.     margin: 20px
  83. }
  84.  
  85. img{
  86.    vertical-align: middle;
  87. }
  88.  
  89. .article article{
  90.     display: inline-block;
  91. }
  92.  
  93. .article{
  94.     text-align: center;
  95.     margin-bottom: 15px;
  96.     white-space: nowrap;
  97. }
  98.  
  99. form h2{
  100.     display: block;
  101.     text-align: left;
  102.  
  103. }
  104.  
  105. input, textarea{
  106.     display: block;
  107.     vertical-align: middle;
  108.     margin-left: auto;
  109.     margin-right: auto;
  110.     margin-top: 10px;
  111.     width: 70%;
  112. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement