Skip to content

Instantly share code, notes, and snippets.

@Villanuevand
Last active August 13, 2020 10:15
Show Gist options
  • Save Villanuevand/80663a392f775036bb43 to your computer and use it in GitHub Desktop.
Save Villanuevand/80663a392f775036bb43 to your computer and use it in GitHub Desktop.
Snippet para Sublime - Estructura base HTML5
<snippet>
<content><![CDATA[
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>Angular Materia introducción</title>
<meta name="description" content="Título de la página.">
<meta name="author" content="Andrés Villanueva">
<link rel="stylesheet" href="estilos.css?v=1.0">
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
</body>
</html>
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>baseHtml5</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<!-- <scope>source.python</scope> -->
</snippet>
@alvaropro
Copy link

probando comentarios del commit

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment