-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
123 lines (115 loc) · 6.43 KB
/
Copy pathindex.html
File metadata and controls
123 lines (115 loc) · 6.43 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css"><link rel="stylesheet" >
<link href="https://fonts.googleapis.com/css?family=Marcellus:regular" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic" rel="stylesheet" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Document</title>
</head>
<body>
<!-- navbar -->
<section>
<div class="navbar">
<img src="images/pngegg.png" alt="logo">
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
<div class="cart">
<i class="bi bi-bag-check"></i>
</div>
</div>
</section>
<!-- end of navbar -->
<!-- shopping cards -->
<section class="container content-section">
<div class="shop-items">
<div class="shop-item">
<img class="shop-item-image" src="images/jewelry1.avif">
<h3 class="shop-item-title">Layered Tiffany Necklace In Silver</h3>
<div class="shop-item-details">
<h4 class="shop-item-price">$12000</h4>
<div class="item">
<button class="like-button"><i class="fa-solid fa-heart"></i></button>
</div>
<button class="btn btn-primary shop-item-button" type="button">ADD TO CART</button>
</div>
</div>
<div class="shop-item">
<img class="shop-item-image" src="images/jewelry 2.avif">
<h3 class="shop-item-title">Bulgari Emerald Ear-Rings</h3>
<div class="shop-item-details">
<h4 class="shop-item-price">$7000</h4>
<div class="item">
<button class="like-button"><i class="fa-solid fa-heart"></i></button>
</div>
<button id="btn" class="btn btn-primary shop-item-button"type="button">ADD TO CART</button>
</div>
</div>
<div class="shop-item">
<img class="shop-item-image" src="images/jewelry 3.avif">
<h3 class="shop-item-title">Mui-Mui Gold Layered Necklace</h3>
<div class="shop-item-details">
<h4 class="shop-item-price">$8000</h4>
<div class="item">
<button class="like-button"><i class="fa-solid fa-heart"></i></button>
</div>
<button class="btn btn-primary shop-item-button" type="button">ADD TO CART</button>
</div>
</div>
<div class="shop-item">
<img class="shop-item-image" src="images/jwe4.avif">
<h3 class="shop-item-title">Swarovski Ruby And Diamond Bangle</h3>
<div class="shop-item-details">
<h4 class="shop-item-price">$17000</h4>
<div class="item">
<button class="like-button"><i class="fa-solid fa-heart"></i></button>
</div>
<button class="btn btn-primary shop-item-button" type="button">ADD TO CART</button>
</div>
</div>
</div>
<!-- cart section -->
<section class="container content-section">
<h2 class="section-header">CART</h2>
<div class="cart-row">
<span class="cart-item cart-header cart-column">ITEM</span>
<span class="cart-price cart-header cart-column">PRICE</span>
<span class="cart-quantity cart-header cart-column">QUANTITY</span>
</div>
<div class="cart-items">
<div class="cart-row">
<div class="cart-item cart-column">
<img class="cart-item-image" src="images/jewelry 3.avif" width="100" height="100">
<span class="cart-item-title">Mui-Mui Gold Layered Necklace</span>
</div>
<span class="cart-price cart-column">$8000</span>
<div class="cart-quantity cart-column">
<input class="cart-quantity-input" type="number" value="1">
<button class="btn btn-danger" type="button">REMOVE</button>
</div>
</div>
<div class="cart-row">
<div class="cart-item cart-column">
<img class="cart-item-image" src="images/jewelry1.avif" width="100" height="100">
<span class="cart-item-title">Layered Tiffany Necklace In Silver</span>
</div>
<span class="cart-price cart-column">$12,000</span>
<div class="cart-quantity cart-column">
<input class="cart-quantity-input" type="number" value="2">
<button class="btn btn-danger" type="button">REMOVE</button>
</div>
</div>
</div>
<div class="cart-total">
<strong class="cart-total-title">Total</strong>
<span class="cart-total-price">$20,000</span>
</div>
<button class="btn btn-primary btn-purchase" type="button">PURCHASE</button>
</section>
<script src="cart.js"></script>
</body>
</html>