Advertisement
nathanguillaumin

index.html Box Model

Feb 23rd, 2020
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.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 id="autofocus">Fellows</li>
  13.                 <li>Contact us</li>
  14.             </ul>
  15.         </nav>
  16.         <section>
  17.             <div class="carousel"></div>
  18.         </section>
  19.         <section>
  20.             <h2 id="fellows">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.         <form>
  28.             <h2 id="contact">Contact us</h2>
  29.             <div id="myform">
  30.                 <input type="email" placeholder="@">
  31.                 <input type="text" placeholder="&#8962;">
  32.                 <select placeholder="I have seen one of them">
  33.                     <option value="seen">I have seen one of them</option>
  34.                 <textarea placeholder="Your message"></textarea>
  35.             </div>
  36.         </form>
  37.     </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement