-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (24 loc) · 1023 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stardew Valley Museum Donation Location Where-to-Find-it-o-Matic</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" />
<script src="script.js" defer></script>
</head>
<body onload="itemGen()">
<div id="header">
<div id="title">Stardew Valley Donation Finder</div>
<div id="info">Tap items already donated to remove their locations from the list.</div>
</div>
<div id="container">
<div id="donations"></div>
<div id="locations"></div>
</div>
<footer>
Issues? Report them on <a href="https://github.com/regularwave/SV-Donation-Location-Finder" target="_blank">GitHub</a>. BG: <a href="https://i.imgur.com/iJolXCP.jpg">Sktchup</a>.
</footer>
</body>
</html>