-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (22 loc) · 860 Bytes
/
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
<!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="stylesheet" href="productstyle.css">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<title>Frontend Mentor|Product preview card component</title>
</head>
<body>
<div class="card">
<img src="image-product.jpg" style="width:100%" class="polaroid">
<p>P E R F U M E</p>
<h1>Gabrielle Essence Eau De Parfum</h1>
<p>A floral, solar and voluptuous interpretation composed by Olivier Polge,
Perfumer-Creator for the House of CHANEL.</p>
<h2>$149.99</h2>
<h5 style="text-decoration:line-through;">$169.99</h5>
<button type="submit" class="btn"> Add to card</button>
</div>
</body>
</html>