BOLETC/views/index.html

28 lines
891 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>
<!-- Banner superior -->
<header>
<h1>BoleTC</h1>
<a href="agregar_evento.html" class="btn">Agregar Evento</a>
<a href="editar_evento.html" class="btn">Editar Evento</a>
</header>
<!-- Contenedor principal con botones de desplazamiento -->
<div class="carousel-container">
<button class="scroll-btn left" onclick="scrollConciertos(-1)">&#10094;</button>
<div class="contenedor-conciertos" id="conciertos"></div>
<button class="scroll-btn right" onclick="scrollConciertos(1)">&#10095;</button>
</div>
</body>
</html>