-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (56 loc) · 2.19 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Taller Typescript 2</title>
<!--Inclusión del Framework Bootstrap para responsive-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css">
<!--Inclusión del archivo CSS con los estilos-->
<link rel="stylesheet" href="lib/style.css">
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col" style="background-color: rgb(21, 166, 166); ">
<div class="row-2">
<div class="col-3"><img src="./images/tvicon.png" class="img-fluid" alt="Responsive image"
style="width: 15%; padding: auto;"></div>
<div class="col">
<h1 style="font-size: larger; font-weight: bold;">TV Series</h1>
</div>
</div>
</div>
</div>
</div>
<br>
<div class="container-fluid">
<div class="row justify-content-between">
<div class="col-4">
<table class="table table-bordered">
<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="series-info">
</tbody>
</table>
<div id="average-seasons">
</div>
</div>
<div class="col">
<div id="series-cards"></div>
</div>
</div>
</div>
<!--Inclusión de los scripts para actualizar el HTML-->
<script type="module" src="./scripts/Serie.js"></script>
<script type="module" src="./scripts/data.js"></script>
<script type="module" src="./scripts/main.js"></script>
</body>
</html>