-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (39 loc) · 1.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>TV Series</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' href='https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css'>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container-fluid">
<div class="row align-items-center" id="fila-1">
<div class="col-md-6 pl-0">
<h1 class="align-middle">TV Series</h1>
</div>
</div>
</div>
<div class="container mt-5">
<div class="row justify-content-center">
<div class="col">
<table class="table table-striped table-dark">
<thead>
<tr>
<th>#</th>
<th>Name</th>
<th>Channel</th>
<th>Seasons</th>
</tr>
</thead>
<tbody id = "table"></tbody>
</table>
</div>
<div class = "col" id = "data"></div>
</div>
</div>
<script type="module" src='./scripts/main.js'></script>
</body>
</html>