Created
January 27, 2014 19:09
-
-
Save zumaro/8655365 to your computer and use it in GitHub Desktop.
BootStrap : starter html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Plantilla básica de Bootstrap</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<!-- CSS de Bootstrap --> | |
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen"> | |
<!-- librerías opcionales que activan el soporte de HTML5 para IE8 --> | |
<!--[if lt IE 9]> | |
<script src="../../assets/js/html5shiv.js"></script> | |
<script src="../../assets/js/respond.min.js"></script> | |
<![endif]--> | |
</head> | |
<body> | |
<h1>¡Hola mundo!</h1> | |
<!-- Librería jQuery requerida por los plugins de JavaScript --> | |
<script src="http://code.jquery.com/jquery.js"></script> | |
<!-- Todos los plugins JavaScript de Bootstrap (también puedes | |
incluir archivos JavaScript individuales de los únicos | |
plugins que utilices) --> | |
<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