Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion website/templates/first_heading.html
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<!-- your html code here -->
<p>Hello, I'm the first_heading.html</p>
<p>Hello, I'm the first_headidasdasdasng.html</p>
42 changes: 41 additions & 1 deletion website/templates/navbar.html
Original file line number Diff line number Diff line change
@@ -1,2 +1,42 @@
<!-- your html code here -->
<p>Hello, I'm the navbar.html</p>
<!DOCTYPE html>
<html lang="es">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
</head>

<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a class="navbar-brand" href="#">Inicio Bootstrap</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#menuNavegacion"
aria-controls="menuNavegacion" aria-expanded="false" aria-label="Alternar navegación">
<span class="navbar-toggler-icon"></span>
</button>

<div class="collapse navbar-collapse justify-content-end" id="menuNavegacion">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#">Acerca de</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Servicios</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Portafolio</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contacto</a>
</li>
</ul>
</div>
</div>
</nav>

<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
</body>

</html>
29 changes: 26 additions & 3 deletions website/templates/tagline.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
<!-- your html code here -->
<!-- Also called a hero image or a jumbotron before bootstrap 5. This might be helpful: https://getbootstrap.com/docs/5.1/examples/jumbotron/ -->
<p>Hello, I'm the tagline and I was loaded using ajax from templates/tagline.html</p>
<!DOCTYPE html>
<html lang="es">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
</head>

<body>
<div style="position: relative;">
<img class="img-fluid" style="height: 90%; object-fit: cover;"
src="https://github.com/4GeeksAcademy/exercise-collaborative-html-website-Dani-Abel-Axel/blob/master/website/assets/img/bg.jpg?raw=true"
alt="Imagen de fondo">

<div class="col-lg-4 col-md-8"
style="position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: rgb(0, 0, 0); text-align: center; text-shadow: 2px 2px 8px rgba(0,0,0,0.7);">
<h1 class="h1 fw-bold text-center ">Una Página Asombrosa</h1>
<h2 class="h4 text-center">¡Te dejará con la boca abierta!</h2>
</div>
</div>

<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
</body>

</html>