-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (53 loc) · 2.21 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
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/style.css"/>
<link rel="icon" href="imagenes/logo.png">
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"/>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<title>TV series</title>
</head>
<body>
<header>
<div class="menu">
<nav>
<img src="imagenes/logo.png" id="logoMenu" alt="Logo">
<label id="nombreLogo" href="#">TV Series</label>
</nav>
</div>
</header>
<div class="container" id="Cuerpo">
<div class="row">
<div class="col-lg-8 col-md-8 col-12 col-sm-12">
<table class="table table-striped table-dark" id="tablaSeries">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Name</th>
<th scope="col">Channel</th>
<th scope="col">Seasons</th>
</tr>
</thead>
<tbody id="cuerpo-Series">
</tbody>
</table>
<p id="average">Average seasons: 0</p>
<p style="font-size: 10pt;">(Presione el nombre de la serie para ver los detalles)</p>
</div>
<div class="col-lg-4 col-md-4 col-4 col-sm-12" id="cartaContenido">
</div>
</div>
</div>
<script type="module" src = "scripts/index.js"></script>
<script type="module" src = "scripts/data.js"></script>
<script type="module" src = "scripts/Serie.js"></script>
</body>
</html>