-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (31 loc) · 1.22 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
<!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="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="style.css">
<title>Frontend Mentor | Product preview card component</title>
</head>
<body>
<main>
<picture>
<source media="(min-width: 768px)" srcset="./images/image-product-desktop.jpg">
<img src="./images/image-product-mobile.jpg" alt="Picture of Perfume Bottle"/>
</picture>
<section>
<h2>Perfume</h2>
<h1>Gabrielle Essence Eau De Parfum</h1>
<p>A floral, solar and voluptuous interpretation composed by Olivier Polge,
Perfumer-Creator for the House of CHANEL.</p>
<div class="price">
<p class="current-price">$149.99</p>
<p class="previous-price"><del><span class="sr-only">The previous price is</span>$169.99</del></p>
</div>
<button><span class="uil uil-shopping-cart-alt"></span>Add to Cart</button>
</section>
</main>
</body>
</html>