-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcars.html
More file actions
117 lines (108 loc) · 3.98 KB
/
Copy pathcars.html
File metadata and controls
117 lines (108 loc) · 3.98 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Our Fleet - CarRental</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="logo">Car<span>Rental</span></div>
<nav>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="cars.html" class="active">Cars</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section class="page-title">
<h1>Explore Our Fleet</h1>
<p>Choose from our wide range of luxury and economic cars</p>
</section>
<section class="cars-container">
<div class="car-grid">
<div class="car-card">
<div class="car-img">
<img src="https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=500&q=60" alt="Porsche">
</div>
<div class="car-info">
<h3>Porsche 911 Carrera</h3>
<p class="specs">Automatic • Petrol • 2 Seats</p>
<div class="price-box">
<span class="price">$150<span>/day</span></span>
<a href="#" class="btn-small">Rent Now</a>
</div>
</div>
</div>
<div class="car-card">
<div class="car-img">
<img src="https://images.unsplash.com/photo-1494976388531-d1058494cdd8?auto=format&fit=crop&w=500&q=60" alt="Mustang">
</div>
<div class="car-info">
<h3>Ford Mustang GT</h3>
<p class="specs">Manual • Petrol • 4 Seats</p>
<div class="price-box">
<span class="price">$120<span>/day</span></span>
<a href="#" class="btn-small">Rent Now</a>
</div>
</div>
</div>
<div class="car-card">
<div class="car-img">
<img src="https://images.unsplash.com/photo-1616422285623-13ff0162193c?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NHx8YXVkaSUyMGNhcnxlbnwwfHwwfHx8MA%3D%3D" alt="Audi">
</div>
<div class="car-info">
<h3>Audi R8 Spyder</h3>
<p class="specs">Automatic • Petrol • 2 Seats</p>
<div class="price-box">
<span class="price">$200<span>/day</span></span>
<a href="#" class="btn-small">Rent Now</a>
</div>
</div>
</div>
<div class="car-card">
<div class="car-img">
<img src="https://images.unsplash.com/photo-1583121274602-3e2820c69888?auto=format&fit=crop&w=500&q=60" alt="Ferrari">
</div>
<div class="car-info">
<h3>Ferrari 488</h3>
<p class="specs">Automatic • Petrol • 2 Seats</p>
<div class="price-box">
<span class="price">$350<span>/day</span></span>
<a href="#" class="btn-small">Rent Now</a>
</div>
</div>
</div>
<div class="car-card">
<div class="car-img">
<img src="https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?auto=format&fit=crop&w=500&q=60" alt="Mercedess">
</div>
<div class="car-info">
<h3>Mercedes-Benz S-Class</h3>
<p class="specs">Automatic • Hybrid • 5 Seats</p>
<div class="price-box">
<span class="price">$180<span>/day</span></span>
<a href="#" class="btn-small">Rent Now</a>
</div>
</div>
</div>
<div class="car-card">
<div class="car-img">
<img src="https://images.unsplash.com/photo-1533473359331-0135ef1b58bf?auto=format&fit=crop&w=500&q=60" alt="Jeep">
</div>
<div class="car-info">
<h3>Jeep Wrangler 4x4</h3>
<p class="specs">Manual • Diesel • 5 Seats</p>
<div class="price-box">
<span class="price">$90<span>/day</span></span>
<a href="#" class="btn-small">Rent Now</a>
</div>
</div>
</div>
</div>
</section>
</body>
</html>