 
    
                
           
A combiner avec Emmet balise html et Emmet commande pour générer du html
Squelette HTML5 de base
| abbreviation | résultat | 
| !, html:5 | <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8" />
    <title>Document</title>
    </head>
    <body>
    </body>
</html> | 
Squelette HTML de base
| abbreviation | résultat | 
| doc | <html>
      <head>
      <meta charset="UTF-8" />
      <title>Document</title>
      </head>
      <body>
      </body>
</html> | 
Squelette HTML4 de base
| abbreviation | résultat | 
| doc4 | <html>
      <head>
      <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
      <title>Document</title>
      </head>
      <body>
      </body>
</html> |