-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (35 loc) · 1.64 KB
/
index.html
File metadata and controls
41 lines (35 loc) · 1.64 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Online Pokedex App</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
<script src="http://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="scripts.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<a class="navbar-brand" href="#">Online Pokedex <img src = "https://upload.wikimedia.org/wikipedia/en/3/39/Pokeball.PNG" height="25px" width="25px"></a>
</nav>
<div class="container" style="margin-top:30px">
<div class="row">
<div class="col-sm-12">
<h2 id="headertext" align="center">Find a Pokemon!</h2>
<p>Welcome to the online Pokedex! Enter the name of any Pokemon into the field and hit go to instantly get all sorts of information about any Pokemon at all!</p>
</div>
<div class="col-sm-4"></div>
<div id="buttonDiv" class="col-sm-4">
<input type="text" name="searchBox" value="" id="searchField" />
<input type="button" name="submitButton" value="Go!" id="searchButton" />
</div>
<div class="col-sm-4"></div>
<div class="col-sm-12" id="pokemon">
</div>
</div>
</body>
</html>