-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (35 loc) · 1.22 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
40
41
42
43
44
45
46
47
48
49
50
51
<!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="style.css">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title> Product preview card component</title>
</head>
<body>
<main>
<div class="card">
<div class="left"></div>
<div class="right">
<div class="group">
<p class="item-category">preview</p>
<h1>SAFEBOX ENERGY</h1>
<p class="description">SAFEBOX ENERGY is a solar company whose delight is to bring
reliable 24/7 Electricity, Eliminate noise and air pollution,
Flexible purchase options, Healthy and comfortable experience e.t.c .
</p>
<div class="price">
<p class="price-update">$149.99</p>
<p class="previous-price">$169.99</p>
</div>
<button>
<img src="images/icon-cart.svg" alt="cart icon">
Add To Cart
</button>
</div>
</div>
</div>
</main>
</body>
</html>