-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.47 KB
/
index.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
<!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.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="/images/favicon-32x32.png" type="image/x-icon">
</head>
<body>
<div class="car-detailsbox">
<div class="card1">
<img src="./images/icon-sedans.svg" alt="first-icon">
<h1>SEDANS</h1>
<p>choose a sedan for it's affordability and excellent <br> fuel economy.Ideal for <br> cruising in the city or on <br> your next road trip.</p>
<button class="sedan-btn">learn more</button>
</div>
<div class="card2">
<img src="./images/icon-suvs.svg" alt="second-icon">
<h1>SUVS</h1>
<p>take an suv for it's spacious <br> interior,power and, <br> versatility.perfect for your <br> next family vacation and <br> off-road adventures.</p>
<button class="suv-btn">learn more</button>
</div>
<div class="card3">
<img src="./images/icon-luxury.svg" alt="third-icon">
<h1>LUXURY</h1>
<p>cruise in the best car brands <br> without the bloated prices. <br> enjoy the enhanced comfort <br> of a luxury rental and arrive <br> in style.
</p>
<button class="luxury-btn">learn more</button>
</div>
</div>
</body>
</html>