-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (35 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TallerTypeScript1</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div class="container">
<div class="row" id="tittle">
<img src="./tv.png" height="35px" width="35px">
<h1>TV Series</h1>
</div>
<table class="table">
<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">
</tbody>
</table>
<body>Seasons average: <a id="averageSeasons"></a></body>
</div>
<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>