Skip to content
Open

Tagline #1853

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
35 changes: 35 additions & 0 deletions website/assets/css/style.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
body{
background: #BDBDBD;
}

.header-hero {
height: 100vh; /* Ocupa toda la pantalla */
background-image: url("https://img.freepik.com/foto-gratis/gran-ciudad_1127-3102.jpg?semt=ais_hybrid&w=740&q=80");
background-size: cover;
background-position: center;
background-repeat: no-repeat;

display: flex;
justify-content: center;
align-items: center;

padding: 60px 20px;
}

.header-content {
text-align: center;
}

.hero-title {
font-size: 5rem;
font-weight: 700;
background-color: rgba(255, 255, 255, 0.9);
padding: 20px 40px;
display: inline-block;
}

.hero-subtitle {
font-size: 3rem;
font-weight: 600;
margin-top: 20px;
background-color: rgba(255, 255, 255, 0.9);
padding: 20px 40px;
display: inline-block;
}
49 changes: 47 additions & 2 deletions website/templates/navbar.html
Original file line number Diff line number Diff line change
@@ -1,2 +1,47 @@
<!-- your html code here -->
<p>Hello, I'm the navbar.html</p>
<html lang="en">

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap demo</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
</head>

<body>


<div class="container-fluid w-100 bg-dark">
<nav class="navbar navbar-expand-lg bg-darkgit pull">
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="#"></a>

<a class="navbar-brand" href="#">Start Bootstrap</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
</nav>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js"
integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI"
crossorigin="anonymous"></script>
</body>
9 changes: 6 additions & 3 deletions website/templates/tagline.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
<!-- 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>
<header class="header-hero">
<div class="header-content">
<h1 class="hero-title">One Page Wonder</h1>
<h2 class="hero-subtitle">Will Knock Your Socks Off</h2>
</div>
</header>