-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.html
38 lines (31 loc) · 1.32 KB
/
search.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Search page </title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
</head>
<body>
<div class="container text-center" style="margin-top: 20px;">
<input type="text" id="customerInput" placeholder="Item to Search" autocomplete="off" />
<button id="search">Search</button>
</div>
<div class="container" style="margin-top: 20px;">
<div class="row" id="row">
</div>
</div>
<div class="container">
<div class="text-center text-center">
<div class="text-center">
<div id="details" class="box" style=" position: absolute; top: 100px;left:30%;margin: auto;height: auto;width: 40%; background-color:#b7babd;">
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>