-
Notifications
You must be signed in to change notification settings - Fork 1
/
myInfo.html
48 lines (44 loc) · 1.3 KB
/
myInfo.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src='myinfo.js'></script>
<link rel="stylesheet" href="myinfo.css">
<link href="https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap" rel="stylesheet">
<title>My Island</title>
</head>
<nav>
<img src="logo.png" width="75">
<a href="index.html">Home</a>
<a href="villagers.html">Villagers</a>
<a href="fish.html">Fish</a>
<a href="bugs.html">Bugs</a>
<a href="sea.html">Sea Creatures</a>
<a href="music.html">Music</a>
<a href="myInfo.html">My Island</a>
</nav>
<body>
<h2>My Villagers</h2>
<div id='villagers'>
</div>
<button id='reset-villagers'>RESET VILLAGERS</button>
<div id="holder">
<h2>Bugs Caught</h2>
<div id='bugs' class='critter'>
<div id="bugs-box">
</div>
</div>
<h2>Fish Caught</h2>
<div id='fish' class='critter'>
<div id="fish-box">
</div>
</div>
<h2>Sea Creatures Caught</h2>
<div id='sea' class='critter'>
<div id="sea-box">
</div>
</div>
</div>
</body>
</html>