Advertisement
Lio-code

04 - HTML : les bonnes pratiques

Mar 7th, 2020
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.11 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4.  
  5. <head>
  6.  
  7. <title>FindThePrecious</title>
  8.  
  9. <meta charset="UTF-8">
  10.  
  11. <meta name="author" content="Lionel Rouge">
  12.  
  13. <meta name="description" content="A website to look for a bunch of fellows">
  14.  
  15. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  16.  
  17. </head>
  18.  
  19.  
  20. <body>
  21.  
  22. <header id=find>
  23.  
  24. <nav>
  25. <a href="#find" title="find the precious">Findtheprecious.com </a>
  26. <a href="#fellows" title="See the fellows"">Fellows</a>
  27. <a href="#contact" title="get in touch">contact us</a>
  28. </nav>
  29.  
  30. </header>
  31.  
  32. <section>
  33.  
  34. <article>
  35. <h2>Dangerous fellowship try to destroy the ring</h2>
  36.  
  37. <a href="http://placeholder.com"> <img src="https://via.placeholder.com/150" alt="this is a slideshow showing dangerous fellows"></a>
  38.  
  39. </article>
  40.  
  41. </section>
  42.  
  43.  
  44. <section >
  45.  
  46. <h1 id="fellows"> Fellows wanted dead (or alive if you want to eat them later)</h1>
  47.  
  48. <article>
  49.  
  50.  
  51. <a href="http://placeholder.com"> <img src="https://via.placeholder.com/150" alt='This is an image of a first fellow'> </a>
  52. <h2>The Wizard</h2>
  53. <h3>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed non risus. </h3>
  54.  
  55. </article>
  56.  
  57. <article>
  58.  
  59. <a href='http://placeholder.com'> <img src = 'https://via.placeholder.com/150' alt='this is an image of a second fellow'> </a>
  60. <h2> Hobbit 3 </h2>
  61. <h3> Lorem ipsum dolor sit amet, consectetur adipiscing elit </h3>
  62.  
  63. </article3
  64.  
  65. <article>
  66.  
  67. <a href="http://placeholder.com"> <img src='https://via.placeholder.com/150' alt='this is an image of another fellow'></a>
  68. <h2>Yummy Dwarf</h2>
  69. <h3>Lorem ipsum dolor sit amet, consectetur adipiscing elit</h3>
  70.  
  71. </article>
  72.  
  73. </section>
  74.  
  75.  
  76. <section >
  77. <h2 id='contact'> Contact US</h2>
  78.  
  79. <form action="/my-handling-form-page" method="post">
  80. <ul>
  81. <li>
  82. <label for="name">Name:</label>
  83. <input type="text" id="name" name="user_name">
  84. </li>
  85. <li>
  86. <label for="mail">E-mail:</label>
  87. <input type="email" id="mail" name="user_mail">
  88. </li>
  89. <li>
  90. <label for="msg">Message:</label>
  91. <textarea id="msg" name="user_message"></textarea>
  92. </li>
  93. </ul>
  94. </form>
  95.  
  96. </section>
  97.  
  98.  
  99. <footer>
  100. <nav>
  101. <a href="#contact" title="get in touch">contact us</a>
  102. <a href="#fellows" title="see the fellows">Fellows</a>
  103.  
  104. </nav>
  105.  
  106. </footer>
  107.  
  108.  
  109. </body>
  110. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement