-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproduct.html
More file actions
104 lines (101 loc) · 4.83 KB
/
product.html
File metadata and controls
104 lines (101 loc) · 4.83 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
<!DOCTYPE html>
<html>
<head>
<title>Tea Store</title>
<meta name="description" content="This is the description">
<link rel="stylesheet" href="styles.css" />
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<script src="store.js" async></script>
</head>
<body>
<div class="navbar">
<a href="#product"> product</a>
<a class="active" href="#cart"> Cart</a>
</div>
<section class="container content-section" id="product">
<h2 class="section-header">PRODUCT</h2>
<div class="shop-items">
<div class="shop-item">
<span class="shop-item-title">Tandori Chai</span>
<img class="shop-item-image" src="Tandoori.jpg" alt="Tandori Chai">
<div class="shop-item-details">
<span class="shop-item-price"> ₹120.00</span>
<button class="btn btn-primary shop-item-button" type="button">ADD TO CART</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">Green Chai</span>
<img class="shop-item-image" src="Green.jfif" alt="Green Chai">
<div class="shop-item-details">
<span class="shop-item-price"> ₹140.00</span>
<button class="btn btn-primary shop-item-button"type="button">ADD TO CART</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">Lemon Chai</span>
<img class="shop-item-image" src="Lemon.jfif" alt="Lemon Chai">
<div class="shop-item-details">
<span class="shop-item-price"> ₹90.00</span>
<button class="btn btn-primary shop-item-button" type="button">ADD TO CART</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">Irani Chai</span>
<img class="shop-item-image" src="Irani.jpg" alt="Irani Chai">
<div class="shop-item-details">
<span class="shop-item-price"> ₹190.00</span>
<button class="btn btn-primary shop-item-button" type="button">ADD TO CART</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">Kashmiri Kahwa</span>
<img class="shop-item-image" src="kashmiri.jpg" alt="Kashmiri Kahwa">
<div class="shop-item-details">
<span class="shop-item-price"> ₹200.00</span>
<button class="btn btn-primary shop-item-button" type="button">ADD TO CART</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">Masala Chai</span>
<img class="shop-item-image" src="masala.jpg" alt="Masala Chai">
<div class="shop-item-details">
<span class="shop-item-price"> ₹180.00</span>
<button class="btn btn-primary shop-item-button" type="button">ADD TO CART</button>
</div>
</div>
</div>
</section>
<section class="container content-section" id="cart">
<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>
<div class="cart-total">
<strong class="cart-total-title">Total</strong>
<span class="cart-total-price"> ₹0</span>
</div>
<button class="btn btn-primary btn-purchase" type="button">PURCHASE</button>
</section>
<footer class="main-footer">
<div class="container main-footer-container">
<h3 class="band-name">Thanks for visit!</h3>
<ul class="nav footer-nav">
<li>
<a href="https://www.instagram.com/i_am_shubham._raj/" target="_blank">
<img src="instagram.jpg">
</a>
</li>
<li>
<a href="https://www.facebook.com" target="_blank">
<img src="facebook.png">
</a>
</li>
</ul>
</div>
</footer>
</body>
</html>