-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathca.html
More file actions
executable file
·33 lines (33 loc) · 804 Bytes
/
ca.html
File metadata and controls
executable file
·33 lines (33 loc) · 804 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<title>CA Police Scanner Codes</title>
<link rel="stylesheet" href="css/light.css">
<link id="stylesheet" rel="stylesheet" href="">
</head>
<body>
<div id="pref">
<button class="but" id="theme-toggle">dark</button>
</div>
<div id="input">
<input placeholder="1029" type="text">
<button class="but" id="searchButton">search</button>
</div>
<div id="results" class="resultsBox">
<h1>Results</h1>
<div class="list">
</div>
</div>
<div id="pinned" class="pinnedBox">
<h1>Pinned</h1>
<div class="list">
</div>
</div>
<div id="codes">
</div>
<script src="theme.js"></script>
<script src="search.js"></script>
</body>
</html>