-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (44 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tarea clase 3</title>
<link rel="stylesheet" href="./css/style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<div class="container text-center"></div>
<div class="row justify-content-center">
<div class="col-6">
<img src="./images/Les Luthiers.jpg" alt="Les Luthiers" class= "rounded-circle" width="300px" >
<h2 class="text-center border text-light">Homenaje a Les Luthiers</h2>
</div>
</div>
<div class="container text-center">
<div class="row justify-content-center">
<div class="col-4 p-3">
<input class="inputb" id="cantidad" name="cantidad" type="number">
<button class=" botonb" onclick="mostrarVideos()">Algunos Videos</button>
</div>
</div>
</div>
<div class="container text-center">
<div class="row justify-content-center">
<div class="col-4 text-center">
<ul id="video-list">
</ul>
</div>
</div>
</div>
<div class="container">
<footer class="py-3 my-4">
</footer>
</div>
<script src="./js/app.js"></script>
</body>
</html>