-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompetitions.html
36 lines (36 loc) · 1.47 KB
/
competitions.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Euro 2024</title>
<script type="module" charset="utf8" src="js/competitions.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/competitions.css">
<script src="https://cdn.jsdelivr.net/npm/d3@7"></script>
</head>
<body>
<div class="container">
<div class="btn-group" role="group" aria-label="Basic example">
<button type="button" class="btn btn-primary" id="champion-btn">Champion</button>
<button type="button" class="btn btn-primary" id="final-btn">Final</button>
<button type="button" class="btn btn-primary" id="semi-final-btn">Semi Final</button>
<button type="button" class="btn btn-primary" id="quarter-final-btn">Quarter Final</button>
<button type="button" class="btn btn-primary" id="round-of-16-btn">Round of 16</button>
</div>
<div id="graph"></div>
<h1 id="table-title">Champion Probability</h1>
<table class="table table-bordered">
<thead>
<tr>
<th>Team</th>
<!-- Dates will be added here dynamically -->
</tr>
</thead>
<tbody id="table-body">
<!-- Data will be added here dynamically -->
</tbody>
</table>
</div>
</body>
</html>