-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 1.36 KB
/
index.html
File metadata and controls
38 lines (38 loc) · 1.36 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Flex-box Assignment</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" type="text/css" href="favicon-32x32.png">
</head>
<body>
<header><a href="grid.html">GRID | </a><a href="index.html"> | FLEX</a></header>
<main>
<div class="container">
<div class="first_slide">
<img src="icon-sedans.svg" height="auto" width="25%">
<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>
<button type="button" href="#">Learn More</button>
</div>
<div class="second_slide">
<img src="icon-suvs.svg" height="auto" width="25%">
<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>
<button type="button" href="#">Learn More</button>
</div>
<div class="third_slide">
<img src="icon-luxury.svg" height="auto" width="25%">
<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>
<button type="button" href="#">Learn More</button>
</div>
</div>
</main>
</body>
</html>