-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (38 loc) · 1.56 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
<!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="stylesheet" href="styles.css">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | Product preview card component</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
</head>
<body>
<div class="container">
<img srcset="images/image-product-desktop.jpg 600w, images/image-product-mobile.jpg 686w"
sizes="(max-width: 600px) 686px, 300px" src="images/image-product-desktop.jpg"
alt="A bottle of perfume surrounded by foliage" class="img">
<section class="">
<section class="desc">
<p class="head">Perfume</p>
<h1>Gabrielle Essence Eau De Parfum</h1>
<p class="para">A floral, solar and voluptuous interpretation composed by Olivier Polge, Perfumer-Creator for
the House of CHANEL.</p>
<p class="prices">
<span class="real">$149.99</span>
<span class="cut">$169.99</span>
</p>
<button>
<img src="/Front-end Mentor/product-preview-card-component-main/images/icon-cart.svg" class="svg">
Add to Cart
</button>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Bibhu</a>.
</div>
</section>
</div>
</body>
</html>