-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 2.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<title>Frontend Mentor | Product Preview Card Component</title>
</head>
<body>
<div class="container d-flex justify-content-center align-items-center">
<div class="product-card d-flex flex-lg-row flex-column">
<!-- Image Section -->
<div class="image-section">
<picture class="d-block">
<source srcset="images/image-product-desktop.jpg" media="(min-width: 768px)">
<img src="images/image-product-mobile.jpg" alt="Gabrielle Essence Eau De Parfum" class="img-fluid object-fit-cover rounded-start">
</picture>
</div>
<!-- Content Section -->
<div class="content-section p-5">
<p class="category text-uppercase mb-3">Perfume</p>
<h1 class="product-title mb-4">Gabrielle Essence Eau De Parfum</h1>
<p class="product-description mb-4">
A floral, solar and voluptuous interpretation composed by Olivier Polge, Perfumer-Creator for the House of CHANEL.
</p>
<div class="price-wrapper d-flex align-items-center mb-3">
<span class="current-price">$149.99</span>
<span class="original-price text-decoration-line-through ms-4">$169.99</span>
</div>
<button class="btn btn-add-to-cart w-100 p-3">
<img src="images/icon-cart.svg" alt=""> Add to Cart
</button>
</div>
</div>
</div>
<footer class="text-center">
Challenge by <a href="https://www.frontendmentor.io/challenges/product-preview-card-component-GO7UmttRfa" target="_blank" class="text-decoration-none fst-italic" rel="noopener noreferrer">Frontend Mentor</a>.
Coded by <a href="https://www.linkedin.com/in/yashi-singh-b4143a246" target="_blank" class="text-decoration-none fst-italic" rel="noopener noreferrer">Yashi Singh</a>.
</footer>
</body>
</html>