Advertisement
Guest User

aaa

a guest
Oct 22nd, 2019
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 3.29 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html lang="en">
  3.     <!-- ALEXIS P. -->
  4.     <head>
  5.         <title>FindThePrecious</title>
  6.         <meta charset="utf-8">
  7.         <meta name="author" content="Alexis P.">
  8.         <meta name="description" content="Site de Sauron">
  9.     </head>
  10.     <body>
  11.         <nav>
  12.             <ul>
  13.                 <li id="title"></li>
  14.                 <li><a href="#suspect">Fellows</a></li>
  15.                 <li><a href="#contact">Contact</a></li>
  16.             </ul>
  17.         </nav>
  18.  
  19.         <section id="slider">
  20.             <input type="radio" id="slide-left" name="slider-side">
  21.             <input type="radio" id="slide-right" name="slider-side">
  22.             <label for="slide-left" id="slider-left-arrow"></label>
  23.             <label for="slide-right" id="slider-right-arrow"></label>
  24.             <div class="slider-item"></div>
  25.             <div class="slider-item"></div>
  26.             <div class="slider-item"></div>
  27.         </section>
  28.  
  29.         <section id="suspect">
  30.             <h2></h2>
  31.             <div id="suspect-container">
  32.                 <div class="suspect">
  33.                     <div class="reward"></div>
  34.                     <img src="https://via.placeholder.com/300" alt="suspect-image">
  35.                     <h2 class="suspect-name"></h2>
  36.                     <h4 class="suspect-description"></h4>
  37.                 </div>
  38.                 <div class="suspect">
  39.                     <div class="reward"></div>
  40.                     <img src="https://via.placeholder.com/300" alt="suspect-image">
  41.                     <h2 class="suspect-name"></h2>
  42.                     <h4 class="suspect-description"></h4>
  43.                 </div>
  44.                 <div class="suspect">
  45.                     <div class="reward"></div>
  46.                     <img src="https://via.placeholder.com/300" alt="suspect-image">
  47.                     <h2 class="suspect-name"></h2>
  48.                     <h4 class="suspect-description"></h4>
  49.                 </div>  
  50.             </div>
  51.         </section>
  52.  
  53.         <hr>
  54.  
  55.         <section id="contact">
  56.             <h2></h2>
  57.             <form action="contact.php">
  58.                 <label for="contact-mail">Mail: </label>
  59.                 <input type="text" name="contact-mail" class="contact-input" id="contact-mail">
  60.                 <label for="contact-location">Location: </label>
  61.                 <input type="text" name="contact-location" class="contact-input" id="contact-location">
  62.                 <select name="contact-object" class="contact-input">
  63.                     <option value="">I have seen one of them</option>
  64.                     <option value="">I am one of them</option>
  65.                     <option value="">Have the location of one of them</option>
  66.                 </select>
  67.                 <textarea name="contact-text" id="contact-textarea" cols="30" rows="10"></textarea>
  68.                 <button class="btn"></button>
  69.             </form>
  70.         </section>
  71.  
  72.         <footer>
  73.             <div id="footer-info">
  74.                 <div></div>
  75.                 <div></div>
  76.                 <div></div>
  77.                 <div></div>
  78.                 <div></div>
  79.                 <div></div>
  80.             </div>
  81.             <div id="footer-media">
  82.                 <div></div>
  83.                 <div></div>
  84.             </div>
  85.         </footer>
  86.     </body>
  87. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement