-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (55 loc) · 2.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="/images/favicon-32x32.png" type="image/x-icon">
<title>Frontend Mentor | Product Preview Card Component</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="flex justify-center items-center h-screen bg-Primary-Cream">
<div class="flex bg-Neutral-White overflow-hidden m-6 rounded-xl md:w-1/2 md:m-0">
<div class="grid grid-row-2 md:grid-cols-2">
<div class="flex justify-end">
<picture class="w-full h-full">
<source media="(min-width: 768px)" srcset="/images/image-product-desktop.jpg">
<img src="/images/image-product-mobile.jpg" alt="Gabrielle Essence Eau De Parfum">
</picture>
</div>
<div class="flex flex-col p-8 gap-4 md:p-12 md:gap-8">
<h1
class="text-xs font-semibold font-Montserrat uppercase tracking-[.35em] text-Neutral-Dark-Grayish-Blue md:text-md">
Perfume
</h1>
<div class="flex flex-col gap-4 md:gap-6">
<h2 class="text-3xl font-bold font-Fraunces leading-8 text-Neutral-Very-Dark-Blue md:text-4xl">
Gabrielle
Essence Eau
De
Parfum</h2>
<p
class="font-Montserrat text-xs font-medium leading-relaxed text-Neutral-Dark-Grayish-Blue md:text-sm">
A
floral, solar
and
voluptuous
interpretation composed by Olivier Polge,
Perfumer-Creator for the
House of CHANEL.</p>
</div>
<div class="flex items-center gap-4">
<p class="text-3xl font-Fraunces font-bold text-Primary-Dark-Cyan md:text-4xl">$149.99</p>
<p class="font-Montserrat text-sm line-through text-Neutral-Dark-Grayish-Blue">$169.99</p>
</div>
<div
class="flex items-center justify-center gap-2 cursor-pointer bg-Primary-Dark-Cyan rounded-md p-4">
<img src="/images/icon-cart.svg" alt="cart">
<p class="font-Montserrat text-sm font-bold text-Neutral-White">Add to Cart</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>