31 lines
918 B
HTML
31 lines
918 B
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>TicketCompany</title>
|
|
<link rel="stylesheet" href="css/inicio.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<nav>
|
|
<div class="logo">TicketCompany</div>
|
|
<ul>
|
|
<li><a href="crear-evento.html">Crear evento</a></li>
|
|
<li><a href="reporte-ventas.html">Generar reporte</a></li>
|
|
<li><a href="main.html">Cerrar sesión</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
<section class="banner">
|
|
<h1>Encuentra tus eventos favoritos</h1>
|
|
<p>Compra boletos para tu artista favorito.</p>
|
|
<input type="text" id="buscarEvento" placeholder="Buscar evento...">
|
|
</section>
|
|
|
|
<section class="eventos">
|
|
</section>
|
|
<script src="js/cargar-evento.js"></script>
|
|
</body>
|
|
</html>
|