-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (55 loc) · 2.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Frontend Mentor | 3-column preview card component</title>
<meta name="author" content="Alberto Raúl José">
<meta name="title" content="Frontend Mentor | 3-column preview card component">
<meta name="description" content="Frontend mentor challenge solution for: 3-column preview card component">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="assets/images/favicon-32x32.png">
<!-- styles -->
<link rel="stylesheet" href="styles/fonts.css">
<link rel="stylesheet" href="styles/index.css">
</head>
<body>
<main class="container grid">
<h1 class="visually-hidden">Our products</h1>
<div class="card card--orange">
<span class="card__icon" aria-hidden="true"></span>
<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 class="card__link" href="index.html">Learn more</a>
</div>
<div class="card card--cyan">
<span class="card__icon" aria-hidden="true"></span>
<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 class="card__link" href="index.html">Learn more</a>
</div>
<div class="card card--dark-cyan">
<span class="card__icon" aria-hidden="true"></span>
<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 class="card__link" href="index.html">Learn more</a>
</div>
</main>
<!-- attribution -->
<footer class="container attribution">
<p>
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://www.github.com/alberto-rj" target="_blank">Alberto Raúl José</a>.
</p>
</footer>
</body>
</html>