-
Notifications
You must be signed in to change notification settings - Fork 0
/
boilerplate.html
57 lines (54 loc) · 1.52 KB
/
boilerplate.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
<!DOCTYPE html>
<html>
<head>
<title>Fake Formula-1 Website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="navbar">
<div class="container">
<a href="#" class="active">Home</a>
<a href="#">Cars</a>
<a href="#">Constructors</a>
<a href="#">More</a>
<a href="#">Results</a>
<a href="#">Standings</a>
</div>
</header>
<main class="content">
<h1 class="h1-title">Formula-1 Cars</h1>
<div class="container-row">
<div class="card">
<img src="./images/ferrarri.jpeg" alt="Car 1">
<h2>Car 1</h2>
<p>Description of Car 1</p>
<p>Constructed by Constructor 1</p>
</div>
<div class="card">
<img src="car2.png" alt="Car 2">
<h2>Car 2</h2>
<p>Description of Car 2</p>
<p>Constructed by Constructor 2</p>
</div>
<div class="card">
<img src="car3.png" alt="Car 3">
<h2>Car 3</h2>
<p>Description of Car 3</p>
<p>Constructed by Constructor 3</p>
</div>
<div class="card">
<img src="car4.png" alt="Car 4">
<h2>Car 4</h2>
<p>Description of Car 4</p>
<p>Constructed by Constructor 4</p>
</div>
</div>
</main>
<footer class="footer">
<div class="container">
<a href="#">About</a>
<a href="#">Contact</a>
</div>
</footer>
</body>
</html>