-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDining.html
More file actions
141 lines (122 loc) · 4.87 KB
/
Dining.html
File metadata and controls
141 lines (122 loc) · 4.87 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="CSS Folder/Dining.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css" integrity="sha512-2SwdPD6INVrV/lHTZbO2nodKhrnDdJK9/kg2XD1r9uGqPo1cUbujc+IYdlYdEErWNu69gVcYgdxlmVmzTWnetw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div class="navbar">
<div class="nav-logo border">
<div class="logo">Shopsphere</div>
</div>
<div class="home">
<a href="ShopSphere.html">Home</a>
</div>
<div class="address border">
<p class="add-1">Deliver to</p>
<div class="add-icon">
<i class="fa-solid fa-location-dot"></i>
<p class="add-2">India</p>
</div>
</div>
<div class="nav-search">
<select class="search-select">
<option>All</option>
</select>
<input placeholder="Search Here" class="search-input">
<div class="search-icon">
<i class="fa-brands fa-searchengin"></i>
</div>
</div>
<div class="nav-sgnin border">
<a href="login.html" style="color: rgba(0, 98, 255, 0.831);">Namaste,Sign in</a>
</div>
<div class="nav-return border">
<p><span>Return</span></p>
<p class="new-second">& Orders</p>
</div>
<div class="nav-cart border">
<i class="fa-solid fa-cart-shopping"></i>
Cart
</div>
</div>
<div class="heading">
<h1>Dining Collection</h1>
<p>Transform your dining room into a space where every meal becomes a moment, every conversation flows naturally, and every gathering feels like home.</p>
</div>
<div class="Dining">
<div class="1 dining">
<div class="cl1 img">
<img src="Image/console table.png">
</div>
<div class="1 disc">
<h1>Console Tables</h1>
<p>Elevate your entryway and find a piece to show off your personality (and somewhere to set your keys!).</p>
<h3>Price:$199</h3>
<button onclick="Cart(this)">Add to Cart</button>
</div>
</div>
<div class="2 dining">
<div class="cl2 img">
<img src="Image/table with storage.png">
</div>
<div class="2 disc">
<h1>Tables with Storage</h1>
<p>These multi-tasking tables will save you in a pinch (and look good while doing it)!</p>
<h3>Price:$399</h3>
<button onclick="Cart(this)">Add to Cart</button>
</div>
</div>
<div class="3 dining">
<div class="cl3 img">
<img src="Image/counter.png">
</div>
<div class="3 disc">
<h1>Counter & Bar Stools</h1>
<p>Take your seating selection to new heights with our collection of bar + counter stools.</p>
<h3>Price:$599</h3>
<button onclick="Cart(this)">Add to Cart</button>
</div>
</div>
</div>
<div class="Dining">
<div class="1 dining">
<div class="cl1 img">
<img src="Image/din ing bundle.webp">
</div>
<div class="1 disc">
<h1>Dining Bundles</h1>
<p>Curated dining sets ready to impress your guests! Buy as a bundle and save!</p>
<h3>Price:$489</h3>
<button onclick="Cart(this)">Add to Cart</button>
</div>
</div>
<div class="2 dining">
<div class="cl2 img">
<img src="Image/bar.webp">
</div>
<div class="2 disc">
<h1>Bar Carts & Wine Racks</h1>
<p>Buy a bar cart, become your own mixologist—it’s as easy as that. Cheers!</p>
<h3>Price:$199</h3>
<button onclick="Cart(this)">Add to Cart</button>
</div>
</div>
<div class="3 dining">
<div class="cl3 img">
<img src="Image/dining chair.png">
</div>
<div class="3 disc">
<h1>Dining Chairs</h1>
<p>From functional to formal, our dining chairs were made for lingering long after dessert.</p>
<h3>Price:$299</h3>
<button onclick="Cart(this)">Add to Cart</button>
</div>
</div>
</div>
<script src="Js Folder/Dining.js"></script>
</body>
</html>