-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (20 loc) · 875 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Página de Inicio</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./css/principal.css">
</head>
<body>
<main class="overlay container text-center">
<h1 class="main__title mt-5">¡Bienvenido!</h1>
<a href="./pages/menu.html" class="btn btn-primary btn-lg boton mt-3">Entrar</a>
<video autoplay loop muted class="video mt-3" style="width: 100%;">
<source src="./assets/videos/shushi.mp4" type="video/mp4">
</video>
</main>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>