Advertisement
Jonathan_Surle

findThePrecious.com

Jan 18th, 2020
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 3.85 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.com</title>
  8. </head>
  9. <body>
  10.     <div id="wrapper">
  11.         <header>
  12.             <h1>FindThePrecious.com</h1>
  13.         </header>
  14.         <nav>
  15.             <ul>
  16.                 <li>
  17.                     <a href="#fellows">Fellows</a>
  18.                 </li>
  19.                 <li>
  20.                     <a href="#contact">Contacts</a>
  21.                 </li>
  22.             </ul>
  23.         </nav>
  24.     </div>
  25.    
  26.     <div id="carousel">
  27.         <div class="carousel-item">
  28.             <h2>Dangerous fellowship try to destroy the ring</h2>
  29.             <p>Orcs, goblins, Balrogs, protect your master Sauron !</p>
  30.         </div>
  31.         <div class="carousel-item">
  32.             <img src="https://via.placeholder.com/140" alt="">
  33.         </div>
  34.         <div class="carousel-item">
  35.             <img src="https://via.placeholder.com/140" alt="">
  36.         </div>
  37.  
  38.         <a id="prev">&#10094;</a>
  39.         <a id="next">&#10095;</a>
  40.     </div>
  41.  
  42.     <section id="fellows">
  43.         <header>
  44.             <h2>Fellows wanted dead <small>(or alive if you want to eat them later)</small></h2>
  45.         </header>
  46.         <ul>
  47.             <li>
  48.                 <div class="container">
  49.                     <div class="reward">Reward 1000 gold coins</div>
  50.                     <img src="https://via.placeholder.com/215x205" alt="The Wizard">
  51.                 </div>
  52.                 <h3>The Wizard</h3>
  53.                 <p>Small description</p>
  54.             </li>
  55.             <li>
  56.                 <div class="container">
  57.                     <div class=dead>Dead</div>
  58.                     <img src="https://via.placeholder.com/215x205" alt="Hobbit">
  59.                 </div>
  60.                 <h3>Hobbit #3</h3>
  61.                 <p>Small description</p>
  62.             </li>
  63.             <li>
  64.                 <div class="container">
  65.                     <div class="reward">Reward 250 gold coins</div>
  66.                     <img src="https://via.placeholder.com/215x205" alt="Yummy Dwarf">
  67.                 </div>
  68.                 <h3>Yummy Dwarf</h3>
  69.                 <p>Small description</p>
  70.             </li>
  71.  
  72.         </ul>
  73.     </section>
  74.     <hr>
  75.     <section id="contact">
  76.         <h2>Contact us</h2>
  77.         <form action="/sendMessage">
  78.             <p>
  79.                 <input type="email" name="email" id="email" placeholder="&#x40;" size="32"  required>
  80.             </p>
  81.             <p>
  82.                 <input type="text" name="adress" id="adress" placeholder="&#x2302;" size="32" required>
  83.             </p>
  84.             <p>
  85.                 <select name="choice" id="choice">
  86.                     <option value="seen">I have seen one of them</option>
  87.                     <option value="captured">I have captured one of them</option>
  88.                     <option value="join">I want to join the army</option>
  89.                 </select>
  90.             </p>
  91.             <p>
  92.                 <textarea name="message" id="message" cols="30" rows="10" placeholder="Your message" required></textarea>
  93.             </p>
  94.             <p>
  95.                 <button type="submit">Send !</button>
  96.             </p>
  97.         </form>
  98.     </section>
  99.     <footer>
  100.         <ul>
  101.             <li><a href="#">About us</a></li>
  102.             <li><a href="#fellows">Fellows</a></li>
  103.             <li><a href="#">Join our army</a></li>
  104.         </ul>
  105.         <ul>
  106.             <li><a href="#">FAQ</a></li>
  107.             <li><a href="#">Reward conditions</a></li>
  108.             <li><a href="#">Legal mentions</a></li>
  109.         </ul>
  110.         <ul>
  111.             <li><a href="#">Sauron4Ever.com</a></li>
  112.             <li><a href="#">Follow him also on twitter</a></li>
  113.         </ul>
  114.     </footer>
  115. </body>
  116. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement