-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (46 loc) · 1.78 KB
/
index.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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="overlay" id="loader">
<div class="loader" id="loading-icon">Loading...</div>
</div>
<div class="main-content">
<h1>Greenville Business Registration Search</h1>
<form>
<div class="form-input">
<label for="business">Business</label>
<input name="business-name" id="business-name" type="text" />
</div>
<div class="form-input">
<label for="address">Address</label>
<input name="address" id="address" type="text" />
</div>
<div class="form-input">
<label for="person-name">Person</label>
<input name="person-name" id="person-name" type="text" />
</div>
<div class="form-input">
<label for="category">Category</label>
<input name="category" id="category" type="text" />
</div>
<div class="form-input">
<button name="search" id="search" type="button">Find</button>
</div>
</form>
<div id="result">
</div>
</div>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.11.3/xlsx.full.min.js"></script>
<script src="main.js"></script>
</body>
</html>