-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
77 lines (75 loc) · 2.31 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
<!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" />
<link
href="https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@400;500&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<title>3-Column Card</title>
</head>
<body>
<a href="grid.html">See Grid task</a>
<section class="parent">
<section class="child1">
<div class="img1">
<img src="images/icon-sedans.svg" alt="sedans" />
</div>
<div class="h1">
<h1>SEDANS</h1>
</div>
<div class="p">
<p>
Choose a sedan for its affordability and excellent <br />
fuel economy. Ideal for <br />
cruising in the city or on <br />
your next road trip.
</p>
</div>
<button class="btn one">Learn More</button>
</section>
<section class="child2">
<div class="img2">
<img src="images/icon-suvs.svg" alt="suv" />
</div>
<div class="h1">
<h1>SUV</h1>
</div>
<div class="p">
<p>
Take an SUV for its spacious <br />
interior, power, and <br />
versatility. Perfect for your <br />
next family vacation and <br />
off-road adventures.
</p>
</div>
<button class="btn two">Learn More</button>
</section>
<section class="child3">
<div class="img3">
<img src="images/icon-luxury.svg" alt="icon-luxury" />
</div>
<div class="h1">
<h1>LUXURY</h1>
</div>
<div class="p">
<p>
Luxury Cruise in the best car <br />
brands without the<br />
bloated prices. Enjoy the enhanced comfort of a luxury rental and
arrive in style.
</p>
</div>
<button class="btn three">Learn More</button>
</section>
</section>
</body>
</html>