-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (37 loc) · 1.75 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
<!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="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png">
<title>Frontend Mentor | Product preview card component</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<div class="c-cards">
<div class="c-card">
<div class="c-card__img" alt="Product Image Perfume"></div>
<div class="c-card__info">
<p class="c-card__subtitle">PERFUME</p>
<h1 class="c-card__title">Gabrielle Essence Eau De Parfum</h1>
<p class="c-card__description">A floral, solar and voluptuous interpretation composed by Olivier Polge,
Perfumer-Creator for the House of CHANEL.</p>
<div class="c-card__prices">
<h2 class="c-card__new-price">$149.99</h2>
<span class="c-card__old-price">$169.99</span>
</div>
<button class="c-card__add-cart" type="button"><img src="./assets/images/icon-cart.svg"
alt="Cart Icon"><span>Add to Cart</span></button>
</div>
</div>
</div>
<footer class="c-footer">
<span class="c-footer__copyright">Challenge by <a href="https://www.frontendmentor.io?ref=challenge"
target="_blank" class="c-footer__link">Frontend Mentor</a>.</span>
<span class="c-footer__copyright">Coded by <a href="https://github.com/jonatasbaldan/" target="_blank"
class="c-footer__link">Jonatas
Baldan</a>.</span>
</footer>
</body>
</html>