Posted By


dojob on 05/27/10

Tagged


Statistics


Viewed 605 times
Favorited by 0 user(s)

Basic HTML5 doc structure


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

structure de base d'un document html5


Copy this code and paste it in your HTML
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>titre</title>
  6. <link rel="stylesheet" href="style.css">
  7. <script src="script.js"></script>
  8. </head>
  9. <body>
  10. <!-- page content -->
  11. </body>
  12. </html>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.