Skip to content
| Marketplace
Sign in
Visual Studio Code>Snippets>!es-htmlNew to Visual Studio Code? Get it now.
!es-html

!es-html

Martin Luz

|
157 installs
| (0) | Free
snippet que genera estructuras html
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Empieza a escribir tu html

con el comando "!es" construirás una estructura HTML inicial en español con comentarios del proyecto y vínculos a .css y .js incluidos:

<!--
Título: 
Descripción: 
-->

<!DOCTYPE html>
<html lang='es'>
   <head>
       <meta charset='UTF-8'>
       <meta name='viewport' content='width=device-width, initial-scale=1.0'>
       <link rel='stylesheet' href=''> <!-- .css -->
       <title></title>
   </head>

   <body>
       <h1>Hola Mundo</h1>

       <script src=''></script> <!-- .js -->
   </body>
</html>
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft