-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (34 loc) · 1.42 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
<!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://fonts.googleapis.com/css2?family=Fraunces:opsz,[email protected],700&family=Montserrat:wght@500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Frontend Mentor | Product preview card component</title>
</head>
<body>
<div class="container">
<div class="grid">
<div class="img">
<img src="images\image-product-desktop.jpg" alt="perfume bottle">
</div>
<div class="card_content">
<h6>PERFUME</h6>
<h2>Gabrielle Essence Eau De Parfum</h2>
<p>A floral, solar and voluptuous interpretation composed by Olivier Polge,
Perfumer-Creator for the House of CHANEL.</p>
<div class="prices">
<p class="big_price">$149.99</p>
<p class="small_price"><s> $169.99</s></p>
</div>
<button type="button" class="btn"><img src="images\icon-cart.svg" alt="shopping cart icon" class="icon">Add to Cart</button>
</div>
</div>
<div class="credits">Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://github.com/NathalyCavalcante">Nathaly Cavalcante</a>.
</div>
</div>
</body>
</html>