-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 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
<!DOCTYPE HTML>
<html>
<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="favicon-32x32.png">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Frontend Mentor | Product Preview Card</title>
</head>
<body>
<main>
<img class="image"src="image.jpg" alt="Perfume Image">
<div class="cardText">
<h1>PERFUME</h1>
<h2>Gabrielle Essence Eau De Parfum</h2>
<p class="desc">A floral, solar and voluptuous interpretation composed by
Olivier Polge, Perfumer-Creator for the House of CHANEL.</p>
<p class="price">$149.99</p>
<p class="price2">$169.90</p>
<button class="button" style="font-size:24px"><i class="fa fa-shopping-cart"></i> Add to Cart</button>
</div>
</main>
<footer class="attribution">
<p>
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>
Coded by <a href="https://github.com/ghratika" target="_blank">Ghratika Gupta</a>
</p>
</footer>
</body>
</html>