-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,100;9..144,400;9..144,900&family=Lobster&family=Lora&family=Orelega+One&family=Questrial&display=swap" rel="stylesheet">
<title>Card</title>
</head>
<body>
<div class="container">
<div class="image-card">
<img src="image/photo_2022-07-16_07-03-55.jpg" alt="this is a perfume image">
</div>
<div class="text-card">
<p class="text-title">PERFUME</p>
<h1>Gabrielle Essence Eau De parfum</h1>
<p class="text">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="price-del"><del>$169.99</del></p>
<button><i class="fa fa-shopping-cart" aria-hidden ="true"></i>Add to Cart</button>
</div>
</div>
</body>
</html>