forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (62 loc) · 3.83 KB
/
index.html
File metadata and controls
69 lines (62 loc) · 3.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>My Blog</title>
<link
href="//fonts.googleapis.com/css?family=Roboto:400,500,300"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
<header>
<h1>Formula One</h1>
<ul class="nav-list">
<li><a class="nav-link" href="#">About</a></li>
<li><a class="nav-link" href="#">contacts</a></li>
<li><a class="nav-link" href="#">home</a></li>
<p><em>Posted by Ntshumayelo Matho</em></p>
</header>
<section>
<main>
<article>
<h2> Fédération Internationale de l'Automobile (FIA)</h2>
<p>The World Drivers' Championship, which became the FIA Formula One World Championship in 1981, has been one of the premier forms of racing around the world since its inaugural season in 1950.
The word formula in the name refers to the set of rules to which all participants' cars must conform. A Formula One season consists of a series of races, known as Grands Prix, which take place worldwide on both purpose-built circuits and closed public roads.</p>
</p>
<a class="Continue reading" href="https://www.pitpass.com/64531/Why-is-F1-racing-so-popular">Continue reading</a>
</h2>
</article>
<h2>F1 Car performance</h2>
<p>Formula One cars are the fastest regulated road-course racing cars in the world, owing to very high cornering speeds achieved through the generation of large amounts of aerodynamic downforce.
Much of this downforce is generated by front and rear wings, which have the side effect of causing severe turbulence behind each car.
The turbulence reduces the downforce generated by a car following directly behind, making it hard to overtake. Major changes to the cars for the 2022 season has seen greater use of ground effect aerodynamics, and modified wings to reduce the turbulence behind the cars, with the goal of making overtaking easier.
The cars are dependent on electronics and aerodynamics, suspension and tyres. Traction control, launch control, and automatic shifting, plus other electronic driving aids, were first banned in 1994. They were briefly reintroduced in 2001, and have more recently been banned since 2004 and 2008, respectively.</p>
<a class="Continue reading" href="https://f1chronicle.com/how-fast-is-a-formula-1-car/">Continue reading</a>
</h2>
<article>
<h2>A mind boggling technology</h2>
<p>Apart from the excitement of racing, the controversies, the rivalries etc. the main reason I like to watch F1 is the technology and the team work that goes with it.
It is what differentiates F1 from other forms of motorsport. It is the reason why F1 is the pinnacle of motorsport.</p>
<a class="Continue reading" href="https://www.google.com/url?sa=i&url=https%3A%2F%2Fwww.theguardian.com%2Fsport%2F2022%2Fmar%2F19%2Fdrive-to-survive-formula-one-netflix-passion-f1&psig=AOvVaw1lG4HHi7lnRmb0kGDmR7aA&ust=1654356170953000&source=images&cd=vfe&ved=0CAwQjRxqFwoTCLiJt-rLkfgCFQAAAAAdAAAAABAL">Continue reading</a>
</article>
<article>
</article>
</main>
</section>
<footer id="contact">
<p> author: Ntshumayelo Matho</p>
<p><a href="[email protected]"></a></p>
©: 2022 Ntshumayelo Matho Code your future-Homework
</footer>
</body>
</html>