-
Notifications
You must be signed in to change notification settings - Fork 0
/
berries.html
48 lines (48 loc) · 1.75 KB
/
berries.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" dir="ltr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<script
src="https://code.jquery.com/jquery-3.7.1.min.js"
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="
crossorigin="anonymous"
></script>
<script src="berries.js" charset="utf-8"></script>
<link rel="stylesheet" href="berries.css" />
<title>PokeSearch</title>
</head>
<body>
<div id="app-container">
<h1 id="app-title">PokéSearch</h1>
<nav id="navbar">
<a href="index.html" class="nav-btn">Home</a>
<a class="nav-btn" href="compare.html">Compare</a>
<a
class="nav-btn"
href="https://pokemon.fandom.com/wiki/Pok%C3%A9mon_Wiki"
>Pokémon</a
>
<a class="nav-btn" href="about.html">About</a>
</nav>
<h1 id="search-instructions">
Type a berry name, or berry ID!
<br />
<em>(ID 1 - 64)</em>
</h1>
<div id="search_container">
<input type="text" id="textbox" placeholder="Choose a berry" />
<button type="button" id="berry-btn">
Search for Berries!
</button>
<div id="modal_screen">
<button id="close">Close</button>
<div id="modal_screen_data"></div>
</div>
</div>
<div id="footer">
<img src="banner.png" id="picture" alt="Pokemon banner" />
</div>
</div>
</body>
</html>