-
Notifications
You must be signed in to change notification settings - Fork 2
/
error.html
265 lines (259 loc) · 9.33 KB
/
error.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
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home</title>
<link href="./css/bootstrap.css" rel="stylesheet" />
<link href="./css/font-awesome.css" rel="stylesheet" />
<link href="css/all.css" rel="stylesheet" />
<link rel="stylesheet" href="./css/productdetalis.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="./css/home.css" />
<link rel="stylesheet" href="css/error.css" />
<!-- <link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/> -->
</head>
<body class="bg-light">
<input
type="number"
id="inputCart"
min="1"
max="20"
onChange="{(e)=>
this.onChangeQty(e)}"
onKeyUp="{e => e.preventDefault()}"
/>
<div class="container-fluid">
<nav class="navbar navbar-expand-sm navbar-light border-bottom">
<div class="container-fluid">
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarText"
aria-controls="navbarText"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<span class="navbar-text d-none d-md-block"> Welcome To Topico </span>
<div
class="collapse navbar-collapse justify-content-around justify-content-md-end"
id="navbarText"
>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="myAccount.html"
>My Account
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="wishList.html">My Wishlist</a>
</li>
<li class="nav-item">
<a class="nav-link" href="login.html">Sign In</a>
</li>
<li class="nav-item">
<a class="nav-link" href="myOrders.html">My orders</a>
</li>
</ul>
</div>
</div>
<!-- end container fluid -->
</nav>
<!-- end navbar -->
<header
class="border-bottom py-4 bg-white row justify-content-between align-items-center"
>
<a href="index.html" class="col-12 col-md-2">
<img src="./images/logo-black.png" alt="" />
</a>
<div class="col-12 col-md-6 col-xl-5 my-3 my-md-2 my-lg-0">
<form class="d-flex">
<div class="btn-group input-group">
<div class="w-100">
<div class="input-group rounded-pill">
<!-- <button
class="btn dropdown-toggle border-2 border-end-0 rounded-end rounded-pill border-warning btnDropDown"
type="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
All Categories
</button>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">clothes</a></li>
<li><a class="dropdown-item" href="#">phons</a></li>
<li><a class="dropdown-item" href="#">TVS</a></li>
</ul> -->
<select
class="form-select text-center border-2 border-end-0 rounded-end rounded-pill border-warning selsectSearch"
aria-label="Default select example"
>
<option selected>All Categories</option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
<input
type="search"
class="form-control w-25 border-2 border-end-0 border-start-0 border-warning p-2"
placeholder="search for products..."
aria-label="Search"
aria-label="Text input with dropdown button"
/>
<button
class="btn btn-warning rounded-start border-2 border-warning rounded-pill w-25 p-2"
type="submit"
>
Search
</button>
</div>
</div>
</div>
</form>
</div>
<!-- 1 -->
<div
class="col-10 col-md-3 col-xl-2 position-relative my-3 my-md-2 my-lg-0 d-flex"
>
<div class="text-center border-secondary">
<a href="cart.html" class="rounded-circle divofCart px-3 py-3"
><i class="fas fa-shopping-bag text-black"></i
></a>
<div
class="rounded-circle numoforderCat bg-warning px-2 text-center"
>
0
</div>
</div>
<p class="ms-3">My carts: 0</p>
</div>
<!-- 2 -->
</header>
</div>
<main class="productdetalis">
<section class="bg-light breadcrumb__area box-plr-75">
<div class="container-fluid">
<div class="row">
<div class="col-xxl-12">
<div class="breadcrumb_wrraper">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="index.html">Home</a>
</li>
<li
class="breadcrumb-item breadcrumb__item--avtive"
aria-current="page"
>
Page Not Found
</li>
</ol>
</nav>
</div>
</div>
</div>
</div>
</section>
<!-- breadCrumb End -->
<!-- Error Area Start -->
<section class="bg-light error__area pt-60 pb-100">
<div class="container">
<div class="col-xl-8 offset-xl-2 col-lg-8 offset-lg-2">
<div class="error__content text-center">
<div class="error__number">
<h1>404</h1>
</div>
<span>component not found</span>
<h2>Nothing To See Here!</h2>
<p>
The page are looking for has been moved or doesn’t exist
anymore, if you like you can return to our homepage.
</p>
</div>
</div>
</div>
</section>
<!-- Erorr Area End -->
<!-- -->
</main>
<footer class="container-fluid">
<div class="container">
<div class="row">
<div class="col-6">
<a href="index.html" class="col-12 col-md-2">
<img src="./images/logo-white.png" alt="" />
</a>
<div class="my-3">
<p class="text-light">
Add: Walls Street 68, Mahattan, New York, USA
</p>
<p class="text-light">Email: [email protected]</p>
<p class="text-light">phone: (+100) 123 456 7890</p>
</div>
</div>
<!-- 1 -->
<div class="col-6 p-2 text-center text-md-start">
<div class="row">
<ul class="col-12 col-md-6">
<li class="pb-1"></li>
<li class="pb-1">
<a class="text-decoration-none text-light" href="contact.html"
>Contact Us</a
>
</li>
<li class="pb-1">
<a class="text-decoration-none text-light" href="aboutUs.html"
>About Us</a
>
</li>
<li class="pb-1">
<a class="text-decoration-none text-light" href="login.html"
>Sign In</a
>
</li>
</ul>
<ul class="col-12 col-md-6">
<li class="pb-1">
<a
class="text-decoration-none text-light preventIfLogOut"
href="myAccount.html"
>My Account
</a>
</li>
<li class="pb-1">
<a
class="text-decoration-none text-light preventIfLogOut"
href=" myWishlist.html"
>My Wishlist</a
>
</li>
<li class="pb-1">
<a
class="text-decoration-none text-light preventIfLogOut"
href="myOrders.html"
>My orders</a
>
</li>
</ul>
</div>
</div>
<!-- 2 -->
</div>
<p class="text-capitalize text-light text-center">
Created By ITI Team ©2024
</p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="js/productdetalis.js"></script>
</body>
</html>