-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (47 loc) · 2.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fraunces:opsz,[email protected],700&family=Montserrat:wght@500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<title>Frontend Mentor | Product preview card component</title>
</head>
<body>
<article class="card flow | border-rad">
<img class="card__img"
srcset="./images/image-product-mobile-686x480.jpg 686w, ./images/image-product-desktop-600x900.jpg 600w"
sizes="(max-width: 799px) 686px, 600px"
src="./images/image-product-mobile-686x480.jpg"
alt="Picture of Gabrielle Essence Eau De Parfum" />
<div class="card__copy flow">
<h2 class="card__category | font-clr-prime font-fam-primary ">Perfume</h2>
<h3 class="card__headline | font-fw-700 font-fam-accent font-fs-accent">Gabrielle Essence Eau De Parfum</h3>
<p class="card__body | font-clr-prime font-fam-primary font-fw-500 ">
A floral, solar and voluptuous interpretation composed by Olivier Polge,
Perfumer-Creator for the House of CHANEL.
</p>
<p class="card__prices">
<span class="card__prices-sale | font-clr-accent-700 font-fam-accent font-fs-accent">
$149.99
</span>
<sup><del class="card__prices-msrp | font-clr-prime font-fam-primary">
$169.99
</del></sup>
</p>
<a class="button | font-fam-primary" href="#">
<img src="./images/icon-cart.svg" alt="">
Add to Cart
</a>
</div>
</article>
<footer class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://www.frontendmentor.io/profile/ridge-runner">@ridge-runner</a>.
</footer>
</body>
</html>