-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (33 loc) · 1.61 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
<!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">
<link rel="stylesheet" href="./styles.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:500,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Fraunces:700" rel="stylesheet">
<script src="https://kit.fontawesome.com/a475ac3762.js" crossorigin="anonymous"></script>
<title>Frontend Mentor | Product preview card component</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
</head>
<body>
<div class="card">
<img class="perfume" src="./images/image-product-desktop.jpg" alt="Chanel perfume bottle near some exotic leaves">
<div class="content">
<h5>Perfume</h5>
<h1>Gabrielle Essence Eau De Parfum</h1>
<p class="body-copy">A floral, solar and voluptuous interpretation composed by Olivier Polge, Perfumer-Creator for the House of CHANEL.</p>
<div class="pricing">
<h1 class="price">$149.99</h1>
<p class="strike">$169.99</p>
</div>
<button><i class="fa-solid fa-cart-shopping"></i>Add to Cart</button>
</div>
</div>
<div class="attribution">
<p>Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.</p>
<p>Coded by <a href="#">Scott1UP</a>.</p>
</div>
</body>
</html>