-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (33 loc) · 1.26 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Fetch Pokemons</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav>
<a href="index.html"><button>HOME</button></a>
<a href="poke-items.html"> <button>ITEMS</button></a>
</nav>
<main>
<h1>*Fetch Pokemons*</h1>
<form>
<div class="container min-vh-10 d-flex justify-content-center">
<div class="row">
<div class="col">
<div class="card">
<label for="pokemon-character">Pokemon Character:</label>
<input type="text" name="pokemon-character" id="pokemon-character">
<button type="button" id="fetch-button">Click Fetch:</button>
</div>
</form>
<div id="character-output"></div>
</main>
<script src="script.js"></script>
</body>
</html>