Skip to content

Instantly share code, notes, and snippets.

@giancorzo
Last active October 7, 2015 04:53
Show Gist options
  • Save giancorzo/8b470abb9c9c6d77331b to your computer and use it in GitHub Desktop.
Save giancorzo/8b470abb9c9c6d77331b to your computer and use it in GitHub Desktop.
Bootstrap initial template
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Plantilla Bootstrap 101</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js Agrega soporte para elementos HTML5 y media quieries en IE8 -->
<!-- ADVERTENCIA: Respond.js no soporta que ejecutes tu código via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<h1>Hola, mundo!</h1>
<!-- jQuery (necesario para que funcionen los componentes de Bootstrap) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<!-- Incluir todos tus scripts apartir de este punto -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment