-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquali.html
More file actions
57 lines (57 loc) · 2.27 KB
/
quali.html
File metadata and controls
57 lines (57 loc) · 2.27 KB
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>F1 Qualifying</title>
<link rel="stylesheet" href="css/quali.css">
<link rel="stylesheet" href="css/home-button.css">
</head>
<body>
<div class="container">
<div class="header">
<div class="box"><img id="GPFlag" src="../img/flags/Fiji.png" alt="GP flag"></div>
<div class="box" id="GPName">Grand Prix Name</div>
<div class="box" id="session-info">Q1</div>
<div class="box" id="timer">18:00</div>
</div>
<div id="weather-info" style="font-weight: bold; margin-top: 10px;">Rain Intensity: 0%</div>
<div id="flag-message" style="display: block; text-align: center; margin-top: 10px; visibility: hidden">
<table style="margin: 0 auto; border-collapse: collapse;">
<tr>
<td id="flag-color" style="width: 20px; height: 20px;"></td>
<td id="flag-text" style="padding-left: 10px; font-weight: bold;"></td>
</tr>
</table>
</div>
<table>
<thead>
<tr>
<th>Position</th>
<th style="width: 30%;">Driver</th>
<th style="width: 30%;">Team</th>
<th> </th> <!-- Tire -->
<th style="width: 4%;"> </th> <!-- State -->
<th>Last Lap</th>
<th>Best Lap</th>
<th>Laps</th>
</tr>
</thead>
<tbody id="ranking-table">
<!-- Les lignes du tableau seront insérées par JavaScript -->
</tbody>
</table>
</div>
<!-- Module imports (loaded before quali.js) -->
<script src="js/home-button.js"></script>
<script src="js/championship_save_select.js"></script>
<script src="js/weather.js"></script>
<script src="js/quali/utils.js"></script>
<script src="js/quali/tires.js"></script>
<script src="js/quali/physics.js"></script>
<script src="js/quali/ui.js"></script>
<script src="js/quali/session.js"></script>
<!-- Main quali module -->
<script src="js/quali.js"></script>
</body>
</html>