Advertisement
Guest User

html structure

a guest
Feb 17th, 2020
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.95 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.     <head>
  4.         <meta charset="UTF-8" />
  5.         <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6.         <meta http-equiv="X-UA-Compatible" content="ie=edge" />
  7.         <title>FindThePrecious</title>
  8.     </head>
  9.     <body>
  10.         <header>
  11.             <nav>
  12.                 <p>FindThePrecious.com</p>
  13.                 <ul>
  14.                     <li>Fellows</li>
  15.                     <li>Contact us</li>
  16.                 </ul>
  17.             </nav>
  18.         </header>
  19.         <section>
  20.             <button>&lt;</button>
  21.             <img src="https://via.placeholder.com/140" alt="" />
  22.             <h2>Dangerous fellowship try to destroy the ring</h2>
  23.             <p>Orcs, Goblins, Balrogs, protect your master Sauron !</p>
  24.             <button>&gt;</button>
  25.         </section>
  26.         <section>
  27.             <h2>Fellows wanted dead (or alive if you want to eat them later)</h2>
  28.             <div>
  29.                 <div><p>Reward 1000 gold coins</p></div>
  30.                 <img src="https://via.placeholder.com/140" alt="" />
  31.                 <div>
  32.                     <h2>The Wizard</h2>
  33.                     <p>Small Description...</p>
  34.                 </div>
  35.             </div>
  36.             <div>
  37.                 <div><p>DEAD</p></div>
  38.                 <img src="https://via.placeholder.com/140" alt="" />
  39.                 <div>
  40.                     <h2>Hobbit #3</h2>
  41.                     <p>Small Description...</p>
  42.                 </div>
  43.             </div>
  44.             <div>
  45.                 <div><p>Reward 250 gold coins</p></div>
  46.                 <img src="https://via.placeholder.com/140" alt="" />
  47.                 <div>
  48.                     <h2>Yummy Dwarf</h2>
  49.                     <p>Small Description...</p>
  50.                 </div>
  51.             </div>
  52.         </section>
  53.         <section>
  54.             <h2>Contact us</h2>
  55.             <form>
  56.                 <input type="email" />
  57.                 <input type="text" />
  58.                 <select>
  59.                     <option>I have seen one of them</option>
  60.                 </select>
  61.                 <textarea cols="30" rows="10" placeholder="Your message"></textarea>
  62.                 <button>Send!</button>
  63.             </form>
  64.         </section>
  65.         <footer>
  66.             <ul>
  67.                 <li>About us</li>
  68.                 <li>Fellows</li>
  69.                 <li>Join our army</li>
  70.             </ul>
  71.             <ul>
  72.                 <li>FAQ</li>
  73.                 <li>Reward conditions</li>
  74.                 <li>Legal mentions</li>
  75.             </ul>
  76.             <ul>
  77.                 <li>Sauron4Ever.com</li>
  78.                 <li>Follow him also on twitter</li>
  79.             </ul>
  80.         </footer>
  81.     </body>
  82. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement