-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path3ColumnPreview.html
More file actions
57 lines (45 loc) · 2.52 KB
/
Copy path3ColumnPreview.html
File metadata and controls
57 lines (45 loc) · 2.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>3-column preview card component</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="./images/3column/styles.css">
</head>
<body>
<main class="bg-gray-100 h-full md:h-screen w-screen">
<div class="grid grid-cols-1 max-w-xs md:grid-cols-3 md:max-w-5xl mx-auto py-20">
<div class="orange rounded-tr-lg md:rounded-tr-none
rounded-tl-lg md:rounded-bl-lg px-10 py-10">
<img src="./images/3column/icon-sedans.svg" alt="Sedans" aria-label="sedans">
<h1 class="mt-10 uppercase text-3xl other font-bold">Sedans</h1>
<p class="para my-9 leading-7"> 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="rounded-full text-orange bg-other py-3 px-6 tracking-wide">Learn More</button>
</div>
<div class="dr-cyan px-10 py-10">
<img src="./images/3column/icon-suvs.svg" alt="suvs" aria-label="suvs">
<h1 class="mt-10 uppercase text-3xl other font-bold">Suvs</h1>
<p class="para my-9 leading-7"> Take an SUV for its spacious interior, power, and versatility. Perfect for your next family vacation
and off-road adventures.</p>
<button class="rounded-full text-drcyan bg-other py-3 px-6 tracking-wide">Learn More</button>
</div>
<div class="vdr-cyan rounded-br-lg rounded-bl-lg md:rounded-bl-none
md:rounded-tr-lg px-10 py-10">
<img src="./images/3column/icon-luxury.svg" alt="luxury" aria-label="luxury">
<h1 class="mt-10 uppercase text-3xl other font-bold">Luxury</h1>
<p class="para my-9 leading-7">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="rounded-full text-vdr-cyan bg-other py-3 px-6 tracking-wide">Learn More</button>
</div>
</div>
</main>
<footer class="attribution text-center">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">
Frontend Mentor</a>.
Coded by <a href="https://www.frontendmentor.io/profile/cssbubble">Priyanka</a>.
</footer>
</body>
</html>