-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex1.html
More file actions
executable file
·49 lines (45 loc) · 1.98 KB
/
index1.html
File metadata and controls
executable file
·49 lines (45 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Product List</title>
<link rel="stylesheet" href="style1.css" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
</head>
<body>
<a href="#" class="scroll"><svg xmlns="http://www.w3.org/2000/svg" width="45" height="45" fill="currentColor" class="bi bi-arrow-up-circle-fill" viewBox="0 0 16 16">
<path d="M16 8A8 8 0 1 0 0 8a8 8 0 0 0 16 0zm-7.5 3.5a.5.5 0 0 1-1 0V5.707L5.354 7.854a.5.5 0 1 1-.708-.708l3-3a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 5.707V11.5z"/>
</svg></a>
<div class="container" >
<h1 style="background-color: #4ba42b;
padding: 20px 0;
text-align: center;
position: fixed;
width: 100%;
top: 0;
left: 0;
z-index: 1;">🛒Product List 🛒</h1>
<h4 style="
font-style: black;
margin-left: 42%;
text-align: right;
position: fixed;
display:inline-block;
top: 0;
z-index: 1;"><a href="aboutme.html" target="_blank">About Me</a></h4>
<div id="searchWrapper">
<input type="text" name="searchBar" id="searchBar" placeholder="Search for a Product,Category or description" />
</div>
<div id="itemsList"></div>
<h1 style="position: fixed; margin-left: 42%; z-index: 1; margin-top: 12%;">🔼
</h1>
</div>
<script src="java1.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2"
crossorigin="anonymous"></script>
</body>
</html>