Skip to content

Instantly share code, notes, and snippets.

@joliveras
Last active October 22, 2015 11:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joliveras/55e34c90f0967b21b59b to your computer and use it in GitHub Desktop.
Save joliveras/55e34c90f0967b21b59b to your computer and use it in GitHub Desktop.
HTML: Basic Template
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8" />
<title>Page Title</title>
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="description" content="">
<meta name="keywords" content="">
<link rel="stylesheet" href="style.css" />
<script src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<header>
<!-- Cabecera -->
</header>
<div class="content-container">
<main role="main">
<!-- Contenido principal -->
</main>
<aside>
<!-- Contenido de apoyo (sidebar) -->
</aside>
</div>
<footer>
<!-- Contenido del pie -->
</footer>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment