Advertisement
P0L0

Odyssey - Structurer une page HTML - PaulC

Feb 24th, 2020
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.51 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3.  
  4. <head>
  5.     <meta charset="UTF-8">
  6.     <title>FindThePrecious</title>
  7. </head>
  8.  
  9. <body>
  10.     <header>
  11.         <h1>FindThePrecious.com</h1>
  12.         <nav>
  13.             <ul>
  14.                 <li><a href="#fellows">Lorem ipsum</a></li>
  15.                 <li><a href="#contactUs">Adipiscing nec</a></li>
  16.             </ul>
  17.         </nav>
  18.     </header>
  19.     <section>
  20.  
  21.         <figure>
  22.             <img src="https://www.colonialkc.org/wp-content/uploads/2015/07/Placeholder.png" width="900" height="250" alt="sdsdfsdfsdf">
  23.             <figcaption>
  24.                 <h2>consectetur adipiscing elit</h2>Suspendisse lectus tortor, dignissim sit amet, adipiscing nec
  25.             </figcaption>
  26.         </figure>
  27.  
  28.     </section>
  29.     <br />
  30.     <section>
  31.         <h2 id="fellows">Ultricies sed</h2>
  32.         <p>(unde omnis iste natus error sit voluptatem accusantium doloremque laudantium)</p>
  33.  
  34.         <br />
  35.  
  36.         <figure>
  37.             <img src="https://www.colonialkc.org/wp-content/uploads/2015/07/Placeholder.png" alt="Pellentesque rhoncus nunc et augue." width="300" height="300">
  38.             <figcaption>
  39.                 <h3>Praesent aliquam</h3>Pellentesque rhoncus nunc et augue.
  40.             </figcaption>
  41.         </figure>
  42.         <br />
  43.         <figure>
  44.             <img src="https://www.colonialkc.org/wp-content/uploads/2015/07/Placeholder.png" alt="Morbi vel erat non mauris convallis vehicula." width="300" height="300">
  45.             <figcaption>
  46.                 <h3>Aliquam</h3>Morbi vel erat non mauris convallis vehicula.
  47.             </figcaption>
  48.         </figure>
  49.         <br />
  50.         <figure>
  51.             <img src="https://www.colonialkc.org/wp-content/uploads/2015/07/Placeholder.png" alt="Suspendisse cursus rutrum augue. Nulla tincidunt tincidunt mi." width="300" height="300">
  52.             <figcaption>
  53.                 <h3>Ut velit mauris</h3>Suspendisse cursus rutrum augue. Nulla tincidunt tincidunt mi.
  54.             </figcaption>
  55.         </figure>
  56.  
  57.     </section>
  58.  
  59.     <br />
  60.     <hr />
  61.     <section>
  62.  
  63.         <h2 id="contactUs">Vivamus leo</h2>
  64.         <form>
  65.             <div>
  66.                 <label for="email">Enter your email: </label>
  67.                 <input type="email" name="email" id="email" required>
  68.             </div>
  69.             <div>
  70.                 <label for="adress">Enter your adress: </label>
  71.                 <input type="text" name="adress" id="adress" required>
  72.             </div>
  73.             <div>
  74.                 <label for="select">Choose an option</label>
  75.  
  76.                 <select name="choose" id="select">
  77.                     <option value="">--Please choose an option--</option>
  78.                     <option value="dog">Dog</option>
  79.                     <option value="cat">Cat</option>
  80.                 </select>
  81.             </div>
  82.             <div>
  83.                 <label for="message">Your message: </label>
  84.                 <input type="text" name="message" id="message" required>
  85.  
  86.             </div>
  87.             <div>
  88.                 <input type="submit" value="Send!">
  89.             </div>
  90.         </form>
  91.  
  92.     </section>
  93.     <br />
  94.     <hr />
  95.     <footer>
  96.         <ul>
  97.             <li>omnis</li>
  98.             <li><a href="#fellows">Lorem ipsum</a></li>
  99.             <li>dolorum</li>
  100.             <li>harum</li>
  101.             <li>placeat</li>
  102.             <li>saepe</li>
  103.             <li>quo minus id</li>
  104.         </ul>
  105.         <h4>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</h4>
  106.     </footer>
  107. </body>
  108.  
  109. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement