Advertisement
Kastus

WCS Quest on HTML best practices

Oct 4th, 2022
815
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.33 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5.     <meta charset="UTF-8">
  6.     <meta name="description" content="WCS HTML Best Practices Quest">
  7.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  8.     <meta name="author" content="Kanstantsin Venhura">
  9.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  10.     <title>Structuring an HTML page</title>
  11. </head>
  12.  
  13. <body>
  14.     <nav>
  15.         <a class="active" href="#home">FindThePrecious.com</a>
  16.         <a href="#news">Fellows</a>
  17.         <a href="#news">Contact us</a>
  18.     </nav>
  19.     <div>
  20.         <h3>Dangerous fellowship try to destroy the rinf</h3>
  21.         <p>Orcs, Goblins, Balrogs, protect your master Sauron!</p>
  22.     </div>
  23.     <div>
  24.         <header>Fellows wanted dead (or alive if you want to eat them later)</header>
  25.     </div>
  26.     <section>
  27.         <a href="https://placeholder.com/">The Wizard<img src="https://via.placeholder.com/150"
  28.                alt="The picture of the Wizard"></a>
  29.         <p>Lorem ipsum dolor sit amet.</p>
  30.         <a href="https://placeholder.com/">Habbit #3<img src="https://via.placeholder.com/150"
  31.                alt="The picture of the Habbit #3"></a>
  32.         <p>Lorem ipsum dolor sit amet.</p>
  33.         <a href="https://placeholder.com/">Yummy dwarf<img src="https://via.placeholder.com/150"
  34.                alt="The picture of the Yummy Dwarf"></a>
  35.         <p>Lorem ipsum dolor sit amet.</p>
  36.     </section>
  37.     <div>
  38.         <h2>Contact us</h2>
  39.         <form action="">
  40.             <ul>
  41.                 <li>
  42.                     <label for="mail">E-mail:</label>
  43.                     <input type="email" placeholder="Email">
  44.                 </li>
  45.                 <li>
  46.                     <label for="phone">Phone</label>
  47.                     <input type="phone number">
  48.                 </li>
  49.                 <select name="" id="">
  50.                     <option value="">I have seen one of them</option>
  51.                 </select>
  52.                 <li>
  53.                     <label for="msg">Message</label>
  54.                     <textarea placeholder="Your message" rows="10"></textarea>
  55.                 </li>
  56.                 <li class="button">
  57.                     <button type="submit" href="/">Send!</button>
  58.                 </li>
  59.             </ul>
  60.         </form>
  61.     </div>
  62.     <footer>
  63.         <div class="container">
  64.             <div class="row justify-content-center">
  65.                 <div class="col-sm-4 col-md-3 item">
  66.                     <ul>
  67.                         <li><a href="#">About us</a></li>
  68.                         <li><a href="#">Fellows</a></li>
  69.                         <li><a href="#">Join our army</a></li>
  70.                     </ul>
  71.                 </div>
  72.                 <div class="col-sm-4 col-md-3 item">
  73.                     <ul>
  74.                         <li><a href="#">FAQ</a></li>
  75.                         <li><a href="#">Rewards conditions</a></li>
  76.                         <li><a href="#">Legal mentions</a></li>
  77.                     </ul>
  78.                 </div>
  79.                 <div class="col-sm-4 col-md-3 item">
  80.                     <ul>
  81.                         <li><a href="#">Sauron4Ever.com</a></li>
  82.                         <li><a href="#">Follow him also on twitter</a></li>
  83.                     </ul>
  84.                 </div>
  85.             </div>
  86.         </div>
  87.     </footer>
  88. </body>
  89.  
  90. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement