-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (56 loc) · 2.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Jose Angel Rey">
<meta name="description" content="Frontend Mentor challengue - Three column card component">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700&family=Lexend+Deca&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./css/styles.css">
<link rel="stylesheet" href="./css/media-queries.css">
<title>3-column preview card component | Frontend Mentor</title>
</head>
<body>
<div class="main-container">
<main class="cards-container">
<!-- ScreenRead only -->
<h1 class="sr-only">Three column card component</h1>
<!-- Sedans card -->
<section class="card">
<img src="./images/icon-sedans.svg" alt="Sedans icon" class="card__icon">
<h2 class="card__title">Sedans</h2>
<p class="card__description"> Choose a sedan for its affordability and excellent fuel economy. Ideal for
cruising in the city
or on your next road trip.</p>
<a href="#" class="card__btn">Learn more</a>
</section>
<!-- SUVs card -->
<section class="card">
<img src="./images/icon-suvs.svg" alt="SUVs icon" class="card__icon">
<h2 class="card__title">SUVs</h2>
<p class="card__description">Take an SUV for its spacious interior, power, and versatility. Perfect for your
next family vacation
and off-road adventures.</p>
<a href="#" class="card__btn">Learn more</a>
</section>
<!-- Luxury card -->
<section class="card">
<img src="./images/icon-luxury.svg" alt="Luxury icon" class="card__icon">
<h2 class="card__title">Luxury</h2>
<p class="card__description">Cruise in the best car brands without the bloated prices. Enjoy the enhanced
comfort of a luxury
rental and arrive in style.</p>
<a href="#" class="card__btn">Learn more</a>
</section>
</main>
</div>
<!-- Attribution footer -->
<div class="attribution">
<p> Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank" rel="noreferrer noopener">Frontend Mentor</a>.</p>
<p>Coded by <a href="https://github.com/Jose-Angel-Rey" target="_blank" rel="noreferrer noopener">Jose Angel Rey</a></p>
</div>
</body>
</html>