-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (32 loc) · 1.34 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
<!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="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | Product preview card component</title>
<link rel="stylesheet" href="style.css">
<html lang="en">
<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="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20,100,0,0" />
</head>
<body>
<div class="container">
<div class="gap">
</div>
<div class ="child">
<img src="images/image-product-desktop.jpg">
</div>
<div class="child2">
<p class="p1">PERFUME</p>
<p class="p2">Gabrielle<br> Essence Eau <br>De Parfum</p>
<p class="p3">A floral, solar and voluptuous<br> interpretation composed by <br> Olivier Polge,
Perfumer-Creator<br > for the House of CHANEL.
</p>
<p class="p4"> $149.99</p>
<p class="p5"> <del> $169.99</del> </p>
<button type="submit" class="bt" ><img class="cart" src="images/icon-cart.svg">Add to Cart</button>
</div>
</div>
</body>
</html>