30 lines
836 B
HTML
30 lines
836 B
HTML
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>BoleTC - Inicio</title>
|
|
<link rel="stylesheet" href="../css/estilos.css">
|
|
<script src="../js/conciertos.js" defer></script>
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
<h1>BoleTC</h1>
|
|
<nav>
|
|
<a href="venta_boletos.html">Comprar Boletos</a>
|
|
<a href="agregar_evento.html">Agregar Evento</a>
|
|
<a href="editar_evento.html">Editar Evento</a>
|
|
<a href="reporte_ventas.html">Reporte Ventas</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<div class="contenedor-principal">
|
|
<div class="contenedor-conciertos" id="conciertos">
|
|
<!-- Los conciertos se cargarán aquí dinámicamente -->
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|