-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (48 loc) · 2.06 KB
/
index.html
File metadata and controls
56 lines (48 loc) · 2.06 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
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#009578">
<title>Spot & Stain Guide</title>
<link rel="stylesheet" href="src/master.css">
<link rel="manifest" href="manifest.json">
<link rel="shortcut icon" href="images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="120x120" href="images/120.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/180.png">
<script>
//added below line to scroll window to top when loading new page
window.scrollTo(0, 0);
</script>
<!-- below script allows search function to work -->
<script>
function mySearch() {
var input, filter, ul, li, a, i, txtValue;
input = document.getElementById("myInput");
filter = input.value.toUpperCase();
ul = document.getElementById("searchList");
li = ul.getElementsByClassName("nav");
for (i = 0; i < li.length; i++) {
a = li[i].getElementsByClassName("cat")[0];
txtValue = a.textContent || a.innerText;
if (txtValue.toUpperCase().indexOf(filter) > -1) {
li[i].style.display = "";
} else {
li[i].style.display = "none";
}
}
}
</script>
</head>
<body>
<!-- SW script -->
<script src="/src/index.js"></script>
<!-- SPA script -->
<script type="module" src="/spa/js/index.js"></script>
<div class="container">
<img class="image" width="300px" height="59px" src="/images/ILS2.jpg" alt="Interlink Supply">
<h1>Spot & Stain Guide</h1>
<div id="app"></div>
</div>
</body>
</html>