-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
128 lines (62 loc) · 3.03 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
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
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>3-column preview card component</title>
<link rel="icon" href="images/favicon-32x32.png">
<!-- Bootstrap Stylesheet -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- Bootstrap Scripts -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700&family=Lexend+Deca&display=swap" rel="stylesheet">
<!-- CSS Stylesheet -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Parent Block -->
<div class="parent-block row ">
<!-- Orange Block -->
<div class="orange-block Block col-md-4 ">
<!-- Orange Image Part -->
<img class="orange-image-part" src="images/icon-sedans.svg" alt="orangeImage">
<!-- Orange Text Part -->
<div class="orange-text-part">
<h1> Sedans</h1>
<p> Choose a sedan for its affordability and excellent fuel economy. Ideal for cruising in the city
or on your next road trip.</p>
</div>
<!-- Orange Button Part -->
<button type="button" class="orange-button " name="button">Learn More</button>
</div>
<!-- Sea Green Block -->
<div class="sea-green-block Block col-md-4 ">
<!-- Sea Green Image Part -->
<img class="sea-green-image-part" src="images/icon-suvs.svg" alt="orangeImage">
<!-- Sea Green Text Part -->
<div class="sea-green-text-part">
<h1> SUVs</h1>
<p>Take an SUV for its spacious interior, power, and versatility. Perfect for your next family vacation
and off-road adventures.</p>
</div>
<!-- Sea Green Button Part -->
<button type="button" class="sea-green-button " name="button">Learn More</button>
</div>
<!-- Deep Green Block -->
<div class="deep-green-block Block col-md-4 ">
<!-- Deep Green Image Part -->
<img class="deep-green-image-part" src="images/icon-luxury.svg" alt="orangeImage">
<!-- Deep Green Text Part -->
<div class="deep-green-text-part">
<h1>Luxury</h1>
<p>Cruise in the best car brands without the bloated prices. Enjoy the enhanced comfort of a luxury
rental and arrive in style.</p>
</div>
<!-- Deep Green Button Part -->
<button type="button" class="deep-green-button" name="button">Learn More</button>
</div>
</div>
</body>
</html>