-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathanimals.html
51 lines (46 loc) · 1.54 KB
/
animals.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
48
49
50
51
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Okami Map - Animals</title>
<meta name="description" content="Map of treasure, clovers, etc. in Okami">
<meta name="author" content="Daniel Shepsis">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Favicon.io-->
<link rel="apple-touch-icon" sizes="180x180" href="./apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon-16x16.png">
<link rel="manifest" href="./site.webmanifest">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<img id="preview" alt="Preview Image" src="./Animals/Kamiki/Chicken.jpeg" />
<div id="table-cont" data-type="animals">
<table>
<thead id="th">
</thead>
<tbody id="tb">
</tbody>
</table>
</div>
<footer>
<a href="./">Treasures/Clovers</a>
| <a href="https://github.com/dshepsis/OkamiMap">Repository</a>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/darkmode-js.min.js"></script>
<script>
function addDarkmodeWidget() {
new Darkmode({
bottom: '64px',
buttonColorDark: 'hsl(0, 0%, 5%)',
buttonColorLight: 'hsl(0, 0%, 97%)',
mixColor: 'hsl(0, 0%, 90%)',
backgroundColor: 'hsl(0, 0%, 97%)',
label: '🌓',
}).showWidget();
}
window.addEventListener('load', addDarkmodeWidget);
</script>
<script async type="module" src="js/index.js"></script>
</body>
</html>