-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Product Preview Card</title>
<link href="https://fonts.googleapis.com/css2?family=Fraunces:wght@700&family=Montserrat:wght@500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="card">
<img src="image-product-desktop.jpg" alt="Product Image" class="desktop-image">
<div class="card-content">
<h1>Perfume</h1>
<h2>Gabrielle<br>Essence Eau<br>De Parfum</h2>
<p>A floral, solar and voluptuous interpretation composed by Olivier Polge, Perfumer-Creator for the House of CHANEL.</p>
<div class="price">
<span class="new-price">$149.99</span>
<span class="old-price">$169.99</span>
</div>
<button class="button">Add to cart</button>
<div class="author">
<p>Challenge by <a href="https://www.frontendmentor.io" target="_blank">frontend Mentor</a>. Coded by <a href="https://github.com/Nichodemusdev/product-preview-card" target="_blank">NichodemusDev</a>.</p>
</div>
</div>
</div>
</body>
</html>