-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteams.html
More file actions
86 lines (73 loc) · 4.29 KB
/
teams.html
File metadata and controls
86 lines (73 loc) · 4.29 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Outside Links -->
<link rel="icon" type="image/png" href="/favicons/favicon-48x48.png" sizes="48x48" />
<link rel="icon" type="image/svg+xml" href="/favicons/favicon.svg" />
<link rel="shortcut icon" href="/favicons/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/favicons/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="F1 project" />
<link rel="manifest" href="/favicons/site.webmanifest" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Audiowide&family=Zen+Dots&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Audiowide&family=Chathura:wght@100;300;400;700;800&family=Zen+Dots&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Audiowide&family=Chathura:wght@100;300;400;700;800&family=Lexend+Giga:wght@100..900&family=Zen+Dots&display=swap" rel="stylesheet">
<!-- Links to JS and CSS -->
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
<title>F1 Teams</title>
</head>
<!-- Content -->
<body>
<!-- Beginning of Nav -->
<div class="nav">
<a href="index.html" class="navlink">
<img class="icon" src="https://cdn-icons-png.flaticon.com/256/2418/2418779.png" alt="">
</a>
<button class="hamburger" onclick="toggleMenu()">☰</button>
<div class="nav-links">
<a href="teams.html" class="navlink">Teams</a>
<a href="Liveraces.html" class="navlink">Live races</a>
<a href="https://www.formula1.com/en/latest" class="navlink">News</a>
<a href="https://www.formula1.com/" class="navlink">Formula 1</a>
</div>
</div>
<!-- End of NAV -->
<div id="page-content-teams">
<table class="content-table">
<tbody>
<tr>
<td><p class="teamlabel">Redbull</p><p class="location">Milton Keynes, United Kingdom</p></td>
<td><a href="https://www.formula1.com/en/teams/red-bull-racing"><img src="https://media.formula1.com/d_team_car_fallback_image.png/content/dam/fom-website/teams/2024/red-bull-racing.png" alt=""></a></td>
</tr>
<tr>
<td><p class="teamlabel">Mercedes</p><p class="location">Brackley, United Kingdom</p></td>
<td><a href="https://www.formula1.com/en/teams/mercedes"><img src="https://media.formula1.com/d_team_car_fallback_image.png/content/dam/fom-website/teams/2024/mercedes.png" alt=""></a></td>
</tr>
<tr>
<td><p class="teamlabel">Mclaren</p><p class="location">Woking, United Kingdom</p></td>
<td><a href="https://www.formula1.com/en/teams/mclaren"><img src="https://media.formula1.com/d_team_car_fallback_image.png/content/dam/fom-website/teams/2024/mclaren.png" alt=""></a></td>
</tr>
<tr>
<td><p class="teamlabel">Ferrari</p><p class="location">Maranello, Italy</p></td>
<td><a href="https://www.formula1.com/en/teams/ferrari"><img src="https://media.formula1.com/d_team_car_fallback_image.png/content/dam/fom-website/teams/2024/ferrari.png" alt=""></a></td>
</tr>
<tr>
<td> <p class="teamlabel">Aston Martin</p><p class="location">Silverstone, United Kingdom</p></td>
<td><a href="https://www.formula1.com/en/teams/aston-martin"><img src="https://media.formula1.com/d_team_car_fallback_image.png/content/dam/fom-website/teams/2024/aston-martin.png" alt=""></a></td>
</tr>
<tr>
<td><p class="teamlabel">RB Japan</p><p class="location">Faenza, Italy</p></td>
<td><a href="https://www.formula1.com/en/teams/rb"><img src="https://media.formula1.com/d_team_car_fallback_image.png/content/dam/fom-website/teams/2024/rb.png" alt=""></a></td>
</tr>
<!-- Add more rows as needed -->
</tbody>
</table>
</div>
</body>
</html>