Advertisement
Lio-code

03 Structurer une page HTML

Mar 6th, 2020
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.08 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. <h2>Dangerous fellowship try to destroy the ring</h2>
  35.  
  36. <a href="http://placeholder.com"> <img src="https://via.placeholder.com/150" alt="this is a slideshow showing dangerous fellows"></a>
  37.  
  38.  
  39. </section>
  40.  
  41.  
  42. <section >
  43.  
  44. <h1 id="fellows"> Fellows wanted dead (or alive if you want to eat them later)</h1>
  45.  
  46. <article>
  47.  
  48.  
  49. <a href="http://placeholder.com"> <img src="https://via.placeholder.com/150" alt='This is an image of a first fellow'> </a>
  50. <h2>The Wizard</h2>
  51. <h3>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed non risus. </h3>
  52.  
  53. </article>
  54.  
  55. <article>
  56.  
  57. <a href='http://placeholder.com'> <img src = 'https://via.placeholder.com/150' alt='this is an image of a second fellow'> </a>
  58. <h2> Hobbit 3 </h2>
  59. <h3> Lorem ipsum dolor sit amet, consectetur adipiscing elit </h3>
  60.  
  61. </article>
  62.  
  63. <article>
  64.  
  65. <a href="http://placeholder.com"> <img src='https://via.placeholder.com/150' alt='this is an image of another fellow'></a>
  66. <h2>Yummy Dwarf</h2>
  67. <h3>Lorem ipsum dolor sit amet, consectetur adipiscing elit</h3>
  68.  
  69. </article>
  70.  
  71. </section>
  72.  
  73.  
  74. <section >
  75. <h2 id='contact'> Contact US</h2>
  76.  
  77. <form action="/my-handling-form-page" method="post">
  78. <ul>
  79. <li>
  80. <label for="name">Name:</label>
  81. <input type="text" id="name" name="user_name">
  82. </li>
  83. <li>
  84. <label for="mail">E-mail:</label>
  85. <input type="email" id="mail" name="user_mail">
  86. </li>
  87. <li>
  88. <label for="msg">Message:</label>
  89. <textarea id="msg" name="user_message"></textarea>
  90. </li>
  91. </ul>
  92. </form>
  93.  
  94. </section>
  95.  
  96.  
  97. <footer>
  98. <nav>
  99. <a href="#contact" title="get in touch">contact us</a>
  100. <a href="#fellows" title="see the fellows">Fellows</a>
  101.  
  102. </nav>
  103.  
  104. </footer>
  105.  
  106.  
  107. </body>
  108. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement