-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (54 loc) · 2.08 KB
/
index.html
File metadata and controls
56 lines (54 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/main.css" />
<title>Three Column Preview Card Component</title>
</head>
<body class="bg-very-light-gray flex justify-center items-center">
<div
class="flex max-w-[775px] rounded-lg overflow-hidden mobile:flex-col mobile:w-[315px]"
>
<div class="bg-bright-orange p-[36px] mobile:p-14">
<img src="./images/icon-sedans.svg" />
<h1
class="py-8 text-very-light-gray text-[35px] font-bold font-Big-Shoulders-Display"
>
SEDANS
</h1>
<p class="text-[15px] text-transparent-white mb-16 mobile:mb-6">
Choose a sedan for its affordability and excellent fuel economy. Ideal
for cruising in the city or on your next road trip.
</p>
<button class="button-orange">Learn More</button>
</div>
<div class="bg-dark-cyan p-[36px] mobile:p-14">
<img src="./images/icon-suvs.svg" />
<h1
class="py-8 text-very-light-gray text-[35px] font-bold font-Big-Shoulders-Display"
>
SUVS
</h1>
<p class="text-[15px] text-transparent-white mb-16 mobile:mb-6">
Take an SUV for its spacious interior, power, and versatility. Perfect
for your next family vacation and off-road adventures.
</p>
<button class="button-cyan">Learn More</button>
</div>
<div class="bg-very-dark-cyan p-[36px] mobile:p-14">
<img src="./images/icon-luxury.svg" />
<h1
class="py-8 text-very-light-gray text-[35px] font-bold font-Big-Shoulders-Display"
>
LUXURY
</h1>
<p class="text-[15px] text-transparent-white mb-16 mobile:mb-6">
Cruise in the best car brands without the bloated prices. Enjoy the
enhanced comfort of a luxury rental and arrive in style.
</p>
<button class="button-dark-cyan">Learn More</button>
</div>
</div>
</body>
</html>