-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsea.html
68 lines (61 loc) · 2.41 KB
/
sea.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="sea.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" href="seaCSS.css">
<link href="https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap" rel="stylesheet">
<title>Sea Creatures</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>
<div id="push">
<div id = 'container'>
<input type="search" placeholder="Search by name" id="search">
<button id="search_button">Search</button>
<div id="main">
</div>
</div>
<div id="info">
<div id="profile">
<h1 id="name">Name: </h1>
<h2 id="availability">Availability: </h2>
<table>
<tr>
<th>Northern Hemisphere</th>
<th>Southern Hemisphere</th>
</tr>
<tr>
<td>
<p id="n-months">Months:</p>
<p id="n-time">Time:</p>
</td>
<td>
<p id="s-months">Months:</p>
<p id="s-time">Time:</p>
</td>
</tr>
</table>
<h2 id="shadow">Shadow Size: </h2>
<h2 id="price">Price: </h2>
<button id='add'>Add</button>
</div>
<div id="buttons">
<button id="all-button">All</button>
</div>
</div>
<div id="here"></div>
</div>
</body>
</html>