-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathf1.html
615 lines (612 loc) · 21.3 KB
/
f1.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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>🏎 FIA Formula One (F1) 2024 Calendar / Agenda & Teams and Drivers</title>
<style>
:root {
--black: rgba(0, 0, 0, .8);
--blue-dark: rgb(0, 112, 201);
--blue-light: rgb(102, 187, 255);
--gray: rgb(204, 204, 204);
}
html {
scroll-behavior: smooth;
}
body {
background-color: rgba(0, 0, 0, 0);
color: var(--black);
font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", system-ui, Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 1.125rem;
line-height: 1.618;
}
.container {
max-width: 30em;
margin: 0 auto;
padding: 0 3%;
}
h1, h2 {
line-height: 1.2;
letter-spacing: .02em;
}
h2 {
margin-top: 2em
}
dt {
margin-top: 1rem;
font-weight: 700;
}
a {
background-color: transparent;
color: var(--blue-dark);
text-decoration: none;
text-decoration-skip: ink;
-ms-touch-action: manipulation;
touch-action: manipulation;
}
a:hover, a:active, a:focus {
color: var(--blue-light);
}
abbr[title] {
text-decoration: none;
}
code {
font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Monaco, "Courier New", monospace;
font-size: 1rem;
}
s {
text-decoration: line-through;
}
table {
border-collapse: collapse;
border-style: hidden;
font-feature-settings: 'tnum' on;
font-variant-numeric: tabular-nums;
}
th, td {
border: 1px solid var(--gray);
border-collapse: collapse;
padding: 3px;
}
tbody tr:nth-child(odd) {
background-color: #eee;
}
hr {
border: 0;
border-top: 1px solid var(--gray);
}
footer {
margin: 0 auto 10%;
font-size: 80%;
}
@media (prefers-color-scheme: dark) {
body {
background-color: var(--black);
color: rgba(255, 255, 255, 1);
word-spacing: .05em;
}
a {
color: var(--blue-light);
}
a:hover, a:active, a:focus {
color: var(--blue-dark);
}
tbody tr:nth-child(odd) {
background-color: rgba(0, 0, 0, .3);
}
}
</style>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://gtm.vreeman.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-WKSDWK');</script>
<link rel="canonical" href="https://vreeman.com/f1">
<meta name="robots" content="index, follow, max-snippet:-1, max-video-preview:-1, max-image-preview:large">
<link rel="alternate" href="https://vreeman.com/f1" hreflang="x-default">
<link rel="alternate" href="https://vreeman.com/f1" hreflang="en">
<meta name="description" content="A handy overview of the F1 calendars, teams and drivers in 2024.">
<meta property="og:type" content="article">
<meta property="og:title" content="F1 2024 races, drivers and teams overview">
<meta property="og:url" content="https://vreeman.com/f1">
<meta property="og:description" content="A handy overview of the F1 calendars, teams and drivers in 2024.">
<meta property="og:image" content="https://vreeman.com/img/tile-wide.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@vreeman">
<meta name="twitter:creator" content="@vreeman">
<meta name="twitter:title" content="F1 2024 races, drivers and teams overview">
<meta name="twitter:description" content="A handy overview of the F1 calendars, teams and drivers in 2024.">
<meta name="twitter:image" content="https://vreeman.com/img/tile-wide.png">
<meta name="twitter:creator" content="@vreeman">
<link rel="webmention" href="https://webmention.io/vreeman.com/webmention">
<link rel="pingback" href="https://webmention.io/vreeman.com/xmlrpc">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ItemList",
"name": "Formula 1 Racing Drivers and Teams",
"numberOfItems": 10,
"@id": "https://vreeman.com/f1#drivers",
"itemListElement": [
{
"@type": "ListItem",
"item": {
"@type": "SportsTeam",
"name": "Oracle Red Bull Racing",
"@id": "https://www.wikidata.org/wiki/Q173663",
"sport": "https://www.wikidata.org/wiki/Q1968",
"athlete": [
{
"@type": "Person",
"name": "Max Verstappen",
"@id": "https://www.wikidata.org/wiki/Q2239218"
},{
"@type": "Person",
"name": "Sergio Pérez",
"@id": "https://www.wikidata.org/wiki/Q82805"
}
]
}
},
{
"@type": "ListItem",
"item": {
"@type": "SportsTeam",
"name": "Scuderia Ferrari",
"@id": "https://www.wikidata.org/wiki/Q169898",
"sport": "https://www.wikidata.org/wiki/Q1968",
"athlete": [
{
"@type": "Person",
"name": "Charles Leclerc",
"@id": "https://www.wikidata.org/wiki/Q17541912"
},{
"@type": "Person",
"name": "Carlos Sainz",
"@id": "https://www.wikidata.org/wiki/Q544856"
}
]
}
},
{
"@type": "ListItem",
"item": {
"@type": "SportsTeam",
"name": "Mercedes-AMG Petronas Formula One Team",
"@id": "https://www.wikidata.org/wiki/Q172721",
"sport": "https://www.wikidata.org/wiki/Q1968",
"athlete": [
{
"@type": "Person",
"name": "Lewis Hamilton",
"@id": "https://www.wikidata.org/wiki/Q9673"
},{
"@type": "Person",
"name": "George Russell",
"@id": "https://www.wikidata.org/wiki/Q17319645"
}
]
}
},
{
"@type": "ListItem",
"item": {
"@type": "SportsTeam",
"name": "BWT Alpine F1 Team",
"@id": "https://www.wikidata.org/wiki/Q98930155",
"sport": "https://www.wikidata.org/wiki/Q1968",
"athlete": [
{
"@type": "Person",
"name": "Pierre Gasly",
"@id": "https://www.wikidata.org/wiki/Q11816647"
},{
"@type": "Person",
"name": "Esteban Ocon",
"@id": "https://www.wikidata.org/wiki/Q15074165"
}
]
}
},
{
"@type": "ListItem",
"item": {
"@type": "SportsTeam",
"name": "McLaren Formula 1 Team",
"@id": "https://www.wikidata.org/wiki/Q172030",
"sport": "https://www.wikidata.org/wiki/Q1968",
"athlete": [
{
"@type": "Person",
"name": "Lando Norris",
"@id": "https://www.wikidata.org/wiki/Q22007193"
},{
"@type": "Person",
"name": "Oscar Piastri",
"@id": "https://www.wikidata.org/wiki/Q28741262"
}
]
}
},
{
"@type": "ListItem",
"item": {
"@type": "SportsTeam",
"name": "Stake F1 Team",
"@id": "https://www.wikidata.org/wiki/Q622489",
"sport": "https://www.wikidata.org/wiki/Q1968",
"athlete": [
{
"@type": "Person",
"name": "Zhou Guanyu",
"@id": "https://www.wikidata.org/wiki/Q17327107"
},{
"@type": "Person",
"name": "Valtteri Bottas",
"@id": "https://www.wikidata.org/wiki/Q138745"
}
]
}
},
{
"@type": "ListItem",
"item": {
"@type": "SportsTeam",
"name": "Aston Martin Aramco Cognizant F1 Team",
"@id": "https://www.wikidata.org/wiki/Q104620704",
"sport": "https://www.wikidata.org/wiki/Q1968",
"athlete": [
{
"@type": "Person",
"name": "Fernando Alonso",
"@id": "https://www.wikidata.org/wiki/Q10514"
},{
"@type": "Person",
"name": "Lance Stroll",
"@id": "https://www.wikidata.org/wiki/Q16238921"
}
]
}
},
{
"@type": "ListItem",
"item": {
"@type": "SportsTeam",
"name": "MoneyGram Haas F1 Team",
"@id": "https://www.wikidata.org/wiki/Q16300222",
"sport": "https://www.wikidata.org/wiki/Q1968",
"athlete": [
{
"@type": "Person",
"name": "Kevin Magnussen",
"@id": "https://www.wikidata.org/wiki/Q1740212"
},{
"@type": "Person",
"name": "Nico Hülkenberg",
"@id": "https://www.wikidata.org/wiki/Q76547"
}
]
}
},
{
"@type": "ListItem",
"item": {
"@type": "SportsTeam",
"name": "Scuderia AlphaTauri",
"@id": "https://www.wikidata.org/wiki/Q71371541",
"sport": "https://www.wikidata.org/wiki/Q1968",
"athlete": [
{
"@type": "Person",
"name": "Yuki Tsunoda",
"@id": "https://www.wikidata.org/wiki/Q59209579"
},{
"@type": "Person",
"name": "Daniel Ricciardo",
"@id": "https://www.wikidata.org/wiki/Q82816"
}
]
}
},
{
"@type": "ListItem",
"item": {
"@type": "SportsTeam",
"name": "Williams Racing",
"@id": "https://www.wikidata.org/wiki/Q171337",
"sport": "https://www.wikidata.org/wiki/Q1968",
"athlete": [
{
"@type": "Person",
"name": "Alex Albon",
"@id": "https://www.wikidata.org/wiki/Q16149172"
},{
"@type": "Person",
"name": "Logan Sargeant",
"@id": "https://www.wikidata.org/wiki/Q28037494"
}
]
}
}
]
}
</script>
</head>
<body>
<noscript><iframe src="https://gtm.vreeman.com/ns.html?id=GTM-WKSDWK" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<div class="container">
<h1>Formula 1 races in 2024</h1>
<p>Below is a list of all the F1 teams and F1 racing drivers that are competing in the F1 2024 season. And of course the F1 2024 racing calendars.</p>
<p>Go to the overviews of F1 2024 <a href="#calendar">Race Calendar</a> and <a href="#drivers">Drivers & Teams</a></p>
<hr>
<h2>F1 2024 Race Calendar</h2>
<table id="calendar">
<thead>
<tr>
<th></th>
<th>Date</th>
<th>Location</th>
</tr>
</thead>
<tbody>
<tr>
<td><s>1</s></td>
<td><s>March 2</s></td>
<td><s>Bahrain International Circuit, Sakhir, Bahrain</s></td>
</tr>
<tr>
<td><s>2</s></td>
<td><s>March 9</s></td>
<td><s>Jeddah Corniche Circuit, Jeddah, Saudi Arabia</s></td>
</tr>
<tr>
<td><s>3</s></td>
<td><s>March 24</s></td>
<td><s>Melbourne Grand Prix Circuit, Melbourne, Australia</s></td>
</tr>
<tr>
<td><s>4</s></td>
<td><s>April 7</s></td>
<td><s>Suzuka International Racing Course, Suzuka, Japan</s></td>
</tr>
<tr>
<td><s>5</s></td>
<td><s>April 21 <sup>🏎️</sup></s></td>
<td><s>Shanghai International Circuit, Shanghai, China</s></td>
</tr>
<tr>
<td><s>6</s></td>
<td><s>May 5 <sup>🏎️</sup></s></td>
<td><s>Miami International Autodrome, Miami, Florida, USA</s></td>
</tr>
<tr>
<td><s>7</s></td>
<td><s>May 19</s></td>
<td><s>Autodromo Enzo e Dino Ferrari, Imola, Italy</s></td>
</tr>
<tr>
<td><s>8</s></td>
<td><s>May 26</s></td>
<td><s>Circuit de Monaco, Monte Carlo, Monaco</s></td>
</tr>
<tr>
<td><s>9</s></td>
<td><s>June 9</s></td>
<td><s>Circuit Gilles-Villeneuve, Montréal, Canada</s></td>
</tr>
<tr>
<td><s>10</s></td>
<td><s>June 23</s></td>
<td><s>Circuit de Barcelona-Catalunya, Barcelona, Spain</s></td>
</tr>
<tr>
<td><s>11</s></td>
<td><s>June 30 <sup>🏎️</sup></s></td>
<td><s>Red Bull Ring, Spielberg, Austria</s></td>
</tr>
<tr>
<td><s>12</s></td>
<td><s>July 7</s></td>
<td><s>Silverstone Circuit, Silverstone, Great Britain</s></td>
</tr>
<tr>
<td><s>13</s></td>
<td><s>July 21</s></td>
<td><s>Hungaroring, Budapest, Hungary</s></td>
</tr>
<tr>
<td><s>14</s></td>
<td><s>July 28</s></td>
<td><s>Circuit Spa-Francorchamps, Francorchamps, Belgium</s></td>
</tr>
<tr>
<td><s>15</s></td>
<td><s>August 25</s></td>
<td><s>Circuit Zandvoort, Zandvoort, the Netherlands</s></td>
</tr>
<tr>
<td><s>16</s></td>
<td><s>September 1</s></td>
<td><s>Autodromo Nazionale Monza, Monza, Italy</s></td>
</tr>
<tr>
<td><s>17</s></td>
<td><s>September 15</s></td>
<td><s>Baku City Circuit, Baku, Azerbaijan</s></td>
</tr>
<tr>
<td><s>18</s></td>
<td><s>September 22</s></td>
<td><s>Marina Bay Street Circuit, Singapore</s></td>
</tr>
<tr>
<td><s>19</s></td>
<td><s>October 20 <sup>🏎️</sup></s></td>
<td><s>Circuit of the Americas, Austin, Texas, USA</s></td>
</tr>
<tr>
<td><s>20</s></td>
<td><s>October 27</s></td>
<td><s>Autódromo Hermanos Rodríguez, Mexico City, Mexico</s></td>
</tr>
<tr>
<td><s>21</s></td>
<td><s>November 3 <sup>🏎️</sup></s></td>
<td><s>Autódromo de Interlagos José Carlos Pace, Sao Paulo, Brazil</s></td>
</tr>
<tr>
<td>22</td>
<td>November 23</td>
<td>Caesars Palace Grand Prix, Las Vegas, Nevada, USA</td>
</tr>
<tr>
<td>23</td>
<td>December 1 <sup>🏎️</sup></td>
<td>Losail International Circuit, Doha, Qatar</td>
</tr>
<tr>
<td>24</td>
<td>December 8</td>
<td>Yas Marina Circuit, Yas Marina, Abu Dhabi</td>
</tr>
</tbody>
<tfoot>
<tr>
<td></td>
<td colspan="2">🏎️ = Sprint Race</td>
</tr>
</tfoot>
</table>
<h2>F1 2024 Racing Drivers and Teams</h2>
<table id="drivers">
<thead>
<tr>
<th>F1 Teams</th>
<th>F1 Drivers</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="2">Oracle <b>Red Bull</b> Racing</td>
<td>1 - Max Verstappen</td>
</tr>
<tr>
<td>11 - Sergio Perez</td>
</tr>
<tr>
<td rowspan="2"><b>Mercedes</b> AMG Petronas F1 Team</td>
<td>44 - Lewis Hamilton</td>
</tr>
<tr>
<td>63 - George Russell</td>
</tr>
<tr>
<td rowspan="2">Scuderia <b>Ferrari</b></td>
<td>16 - Charles Leclerc</td>
</tr>
<tr>
<td>55 - Carlos Sainz</td>
</tr>
<tr>
<td rowspan="2"><b>McLaren</b> Formula 1 Team</td>
<td>4 - Lando Norris</td>
</tr>
<tr>
<td>81 - Oscar Piastri</td>
</tr>
<tr>
<td rowspan="2"><b>Aston Martin</b> Aramco F1 Team</td>
<td>14 - Fernando Alonso</td>
</tr>
<tr>
<td>18 - Lance Stroll</td>
</tr>
<tr>
<td rowspan="2">BWT <b>Alpine</b> F1 Team</td>
<td>10 - Pierre Gasly</td>
</tr>
<tr>
<td>31 - Esteban Ocon</td>
</tr>
<tr>
<td rowspan="2"><b>Williams</b> Racing</td>
<td>23 - Alex Albon</td>
</tr>
<tr>
<td>2 - Logan Sargeant</td>
</tr>
<tr>
<td rowspan="2">Visa Cash App <b>RB</b> Formula One Team</td>
<td>22 - Yuki Tsunoda</td>
</tr>
<tr>
<td>3 - Daniel Ricciardo</td>
</tr>
<tr>
<td rowspan="2">Stake F1 Team Kick <b>Sauber</b></td>
<td>24 - Zhou Guanyu</td>
</tr>
<tr>
<td>77 - Valtteri Bottas</td>
</tr>
<tr>
<td rowspan="2">MoneyGram <b>Haas</b> F1 Team</td>
<td>20 - Kevin Magnussen</td>
</tr>
<tr>
<td>27 - Nico Hülkenberg</td>
</tr>
</tbody>
<tfoot>
</tfoot>
</table>
<h2>F1 2025 Race Calendar</h2>
<ul>
<li>16 March - Melbourne Australia</li>
<li>23 March - Shanghai, China</li>
<li>6 April - Suzuka, Japan</li>
<li>13 April - Sakhir, Bahrain</li>
<li>20 April - Jeddah, Saudi Arabia</li>
<li>4 May - Miami, USA</li>
<li>18 May - Imola, Italy</li>
<li>25 May - Monaco</li>
<li>1 June - Barcelona, Spain</li>
<li>15 June - Montreal, Canada</li>
<li>29 June - Spielberg, Austria</li>
<li>6 July - Silverstone, United Kingdom</li>
<li>27 July - Spa, Belgium</li>
<li>3 August - Budapest, Hungary</li>
<li>31 August - Zandvoort, the Netherlands</li>
<li>7 September - Monza, Italy</li>
<li>21 September - Baku, Azerbaijan</li>
<li>5 October - Singapore</li>
<li>19 October - Austin, USA</li>
<li>26 October - Mexico City, Mexico</li>
<li>9 November - Sao Paulo, Brazil</li>
<li>22 November - Las Vegas, USA</li>
<li>30 November - Lusail, Qatar</li>
<li>7 December - Yas Marina, Abu Dhabi</li>
</ul>
<hr>
<footer>
<p>Vreeman.com is the personal website of <a class="h-card" rel="me" href="https://vreeman.com" title="Simon Vreeman">Simon Vreeman</a>.</p>
<dl>
<dt>Privacy & Cookie Policy</dt>
<dd>Vreeman.com uses Google Analytics (<code>_ga</code>, <code>FPID</code>, & <code>FPLC</code>), and Google Tag Manager Server-side to measure and analyze anonymous user behavior data to improve the website in an ethical manner.</dd>
<dt>Colophon</dt>
<dd>Vreeman.com uses Cloudflare Pages to ensure it loads fast and the source code is hosted on Github.</dd>
<dt>Licenses</dt>
<dd>Text is licensed under <a href="https://creativecommons.org/licenses/by/4.0/" rel="license" title="Creative Commons Attribution 4.0 International License" data-vars-outbound-text="Creative Commons License" data-vars-outbound-link="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>. <code></></code> is licensed under <a href="https://opensource.org/licenses/MIT" rel="license" title="MIT License" data-vars-outbound-text="MIT License" data-vars-outbound-link="https://opensource.org/licenses/MIT">MIT License</a>.</dd>
<dt>Other</dt>
<dd>
<ul>
<li><a href="https://vreeman.com/cro" title="CRO (Conversion Rate Optimization) Tools" data-vars-outbound-text="CRO Tools" data-vars-outbound-link="https://vreeman.com/cro"><abbr title="Conversion Rate Optimization">CRO</abbr> Tools</a></li>
<li><a href="https://vreeman.com/f1" title="FIA Formula One (F1) 2024 Calendar / Agenda, Teams and Drivers" data-vars-outbound-text="F1 Calendar" data-vars-outbound-link="https://vreeman.com/f1">F1 2024 Calendar, Teams & Drivers</a></li>
<li><a href="https://vreeman.com/gear" title="What is in my backpack?" data-vars-outbound-text="Travel Gear" data-vars-outbound-link="https://vreeman.com/gear">Travel Gear</a></li>
<li><a href="https://vreeman.com/meditations/" title="Meditations by Marcus Aurelius. Translations by Gregory Hays." data-vars-outbound-text="Meditations" data-vars-outbound-link="https://vreeman.com/meditations/">Meditations by Marcus Aurelius. Translations by Gregory Hays.</a></li>
<li><a href="https://vreeman.com/discourses/" title="Discourses of Epictetus. Translated and edited by Robert Dobbin." data-vars-outbound-text="Discourses" data-vars-outbound-link="https://vreeman.com/discourses/">Discourses of Epictetus. Translated and edited by Robert Dobbin.</a></li>
</ul>
</dd>
</dl>
</footer>
</div>
</body>
</html>