-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (41 loc) · 1.51 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
<!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 rel="stylesheet" href="index.css">
<title>CSS Flexbox Layout</title>
</head>
<body>
<div class="con">
<div class="flex-container">
<a href="grid.html"><strong>Click to see the Grid Layout</strong></a>
<div id="a">
<br>
<img src="icon-sedans.svg" alt="Sedan" style="float:left">
<h3>SEDANS</h3>
<p>Choose a sedan for its affordability and excellent fuel economy. Ideal for cruising in the city or on your next road trip.</p>
<br><br>
<button class="b3">Learn More</button><br>
</div>
<div id="b">
<br>
<img src="icon-suvs.svg" alt="Sedan" style="float:left">
<h3>SUVS</h3>
<p>Take an SUV for its spacious interior, power and versatility. Perfect for your next family vacation and off-road adventures.</p>
<br><br>
<button class="b2">Learn More</button><br>
</div>
<div id="c">
<br>
<img src="icon-luxury.svg" alt="Sedan" style="float:left">
<h3>LUXURY</h3>
<p>Cruise in the best car brands without the bloated prices. Enjoy the enhanced the comfort of a luxury mrental and arrive in style.</p>
<br><br>
<button class="b1">Learn More</button><br>
</div>
</div>
</div>
</body>
</html>