Created
January 26, 2022 22:55
-
-
Save joelibaceta/39c041c12e384133c9ed0c8a8c83b6af to your computer and use it in GitHub Desktop.
carousel
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
| <html> | |
| <head> | |
| <link href="http://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"> | |
| <script src="http://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <div id="carousel1" class="carousel slide" data-bs-ride="carousel"> | |
| <div class="carousel-inner"> | |
| <div class="carousel-item active"> | |
| <img src="imagen1.jpg" class="d-block w-100"/> | |
| </div> | |
| <div class="carousel-item"> | |
| <img src="imagen2.jpg" class="d-block w-100"/> | |
| </div> | |
| </div> | |
| <button class="carousel-control-prev" type="button" | |
| data-bs-target="#carousel1" data-bs-slide="prev"> | |
| <span class="carousel-control-prev-icon"></span> | |
| </button> | |
| <button class="carousel-control-next" type="button" | |
| data-bs-target="#carousel1" data-bs-slide="next"> | |
| <span class="carousel-control-next-icon"></span> | |
| </button> | |
| </div> | |
| <div class="row"> | |
| <div class="col-3"> | |
| <h1>Columna 1 </h1> | |
| </div> | |
| <div class="col-4"> | |
| <h1>Columna 2 </h1> | |
| </div> | |
| <div class="col-5"> | |
| <h1>Columna 5 </h1> | |
| <button type="button" class="btn btn-primary position-relative"> | |
| Mensajes | |
| <span class="position-absolute top-0 start-100 translate-middle badge rounded-pill bg-danger"> | |
| 5 | |
| <span class="visually-hidden">unread messages</span> | |
| </span> | |
| </button> | |
| </div> | |
| </div> | |
| <div class="row"> | |
| <div class="col-6"> | |
| <h1>Columna 1 </h1> | |
| <button class="btn btn-primary">Mas Informacion</button> | |
| </div> | |
| <div class="col-6"> | |
| <h1>Columna 2 </h1> | |
| <button class="btn btn-success">Mas Informacion</button> | |
| </div> | |
| </div> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment