-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (43 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.22/css/dataTables.bootstrap4.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/index.css">
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<script type="text/javascript" charset="utf8" src="https://code.jquery.com/jquery-3.5.1.js"></script>
<script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.10.22/js/jquery.dataTables.min.js"></script>
<script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/select/1.3.3/js/dataTables.select.min.js"></script>
<script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.10.22/js/dataTables.bootstrap4.min.js"></script>
<script type="text/javascript" charset="utf8" src="js/index.js"></script>
<title>Bravo!Ranking</title>
</head>
<body class="bg-light">
<div class="container mt-5">
<h1 class="mb-4">Bravo!Ranking</h1>
<label for="yearSelect">Year:</label>
<select id="yearSelect" class="form-control">
</select>
<div><i>Date of the latest match : <span id="latestDate"></span></i></div>
<table class="table table-striped" id="myTable">
<thead class="thead-dark">
<tr>
<th>#</th>
<th style="width: 55px;"></th>
<th style="width: 55px;"></th>
<th>Team</th>
<th>Points</th>
<th>Points Change</th>
<th>Confed.</th>
</tr>
</thead>
<tbody id="table-body">
<!-- JSON data will be inserted here -->
</tbody>
</table>
</div>
</body>
</html>