Advertisement
Guest User

index.html

a guest
Feb 20th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.58 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html lang="en">
  4.  
  5.     <head>
  6.         <meta charset="UTF-8" />
  7.         <title>Find the precious!</title>
  8.         <link rel="stylesheet" href="style.css" />
  9.     </head>
  10.  
  11.     <div id="bloc_page">
  12.  
  13.     <body>
  14.  
  15.     <header>
  16.  
  17.         <nav>
  18.             <ul>
  19.                 <li>FindThePrecious.com</li>
  20.                 <li class="color">Fellows</li>
  21.                 <li>Contact us</li>
  22.             </ul>
  23.         </nav>
  24.  
  25.     </header>
  26.  
  27.         <section>
  28.             <h2>Fellows wanted dead (or alive if you want to eat them later)</h2>
  29.         </section>
  30.        
  31.         <section>
  32.             <article class="carousel"></article>
  33.             <article class="carousel"></article>
  34.             <article class="carousel"></article>
  35.         </section>
  36.  
  37.    <footer>
  38.  
  39.         <h2>Contact us</h2>
  40.  
  41.         <form method="post" action="traitement.php">
  42.  
  43.             <p><label for="email"></label>
  44.             <input type="email" name="email" id="email" placeholder="@" size="98" /></p>
  45.  
  46.             <p><label for="address"></label>
  47.             <input type="text" name="address" id="address" placeholder="&#8962;" size="98" /></p>
  48.  
  49.             <p><label for="choice"></label>
  50.             <input type="text" name="choice" id="choice" placeholder="I have seen one of them" size="98" /></p>
  51.  
  52.             <p><label for="message"></label>
  53.             <textarea name="message" id="message" placeholder="Your message" rows="10" cols="100"></textarea></p>
  54.  
  55.             <input type="submit" value="Send" />
  56.  
  57.         </form>
  58.  
  59.     </footer>
  60.  
  61.     </body>
  62.  
  63. </div>
  64. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement