-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 1.64 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no">
<title>KinderKit</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<style>
body{
background-color:#000021;
overflow: hidden;
}
.btn-kinder{
color: #fff;
background-color: #ff0000;
border-color: #ff0000;
}
.btn-kinder:hover{
color: #ff0;
background-color: #ff0000;
border-color: #ff0000;
}
canvas{
background-image: url('images/bg.jpg');
background-repeat: no-repeat;
background-position: top center;
background-size:contain;
}
</style>
</head>
<body>
<section class="container" id="bienvenida.container">
<div class="d-flex justify-content-center m-3 m-lg-5">
<img src="images/kinderkit.png" class="">
</div>
<div class="d-flex justify-content-center m-2 m-lg-5">
<button type="button" class="btn btn-kinder my-2 my-lg-5" id="btn.bienvenida"><span class="display-4">Entrar</span></button>
<video id="bienvenida" class="d-none" src="intro_vi/intro.mp4"></video>
</div>
</section>
<canvas class="d-none"></canvas>
<video id="alfa" class="d-none"></video>
<video id="beto" class="d-none"></video>
<video id="central" class="d-none"></video>
<script src="main.js"></script>
</body>
</html>