Page HTML de base


/ Published in: HTML
Save to your folder(s)

example de structure html élémentaire


Copy this code and paste it in your HTML
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <link ref="stylesheet" href="style.css"> <!--indiquer le chemin complet vers le fichier feuille de style-->
  6. <title>Titre</title> <!--le titre qui apparait dans l'onglet du navigateur-->
  7. </head>
  8. <body>
  9. <h1>Gros titre niveau 1</h1>
  10. <div><p>ceci est un paragraphe</p> </div>
  11. <h2>Titre de niveau 2</h2>
  12. <div><p>ceci est un paragraphe</p>
  13. <img src:"https://www.thecatconnection.com/resources/wp-content/uploads/2015/10/Vintage-Halloween-Postcards-3.jpg" width="320px" height="198px"></div>
  14. </body>
  15. </html>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.