Skip to content

Instantly share code, notes, and snippets.

@pochitax
Created July 21, 2022 00:18
Show Gist options
  • Save pochitax/fed2f76597f6346cf85e20041185073c to your computer and use it in GitHub Desktop.
Save pochitax/fed2f76597f6346cf85e20041185073c to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Mi primer sitio con Bootstrap</title>
<!-- CSS BOOTSTRAP VINCULADO DESDE EL SERVIDOR -->
<!--<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">-->
<!-- CSS BOOTSTRAP DE FORMA LOCAL -->
<link rel="stylesheet" href="assets/bootstrap-5.2.0-dist/css/bootstrap.min.css">
<!--//-->
</head>
<body>
<!-- Estructura de columnas -->
<div class="container">
<div class="row">
<div class="col-6"></div>
<div class="col-6"><h1>Hello world!</h1></div>
</div>
</div>
<!-- // -->
<!-- JS BOOTSTRAP VINCULADO DESDE EL SERVIDOR -->
<!--<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa" crossorigin="anonymous"></script>-->
<!-- JS BOOTSTRAP DE FORMA LOCAL -->
<script src="assets/bootstrap-5.2.0-dist/js/bootstrap.bundle.min.js"></script>
<!-- // -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment