-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
94 lines (87 loc) · 2.04 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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<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>PokéDex</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.9.3/css/bulma.min.css" />
<link
rel="stylesheet"
href="static/css/style.css" />
</head>
<body>
<header class="hero">
<div class="hero-body has-text-centered">
<h1 class="title is-1">PokéDex</h1>
</div>
</header>
<form>
<div class="container">
<div class="field has-addons">
<div class="control">
<input
type="text"
name="pokemon"
id="pokemon"
placeholder="Enter a Pokémon name"
autofocus
class="input is-medium is-rounded has-text-centered" />
</div>
<div class="control">
<input
type="submit"
value="Search"
id="Invio"
class="button is-info is-medium is-rounded" />
</div>
</div>
<div
id="autocompleteBox"
class="is-hidden"></div>
</div>
</form>
<div
id="pokeimage"
class="container is-fluid mt-6"></div>
<section
id="pokeData"
class="container section is-fluid">
<div class="container is-fluid">
<h2
id="pokeName"
class="subtitle is-2 has-text-centered"></h2>
</div>
<div class="container is-fluid">
<h3
id="pokeType"
class="subtitle is-3 is-size-3 mb-3 mt-3 has-text-centered"></h3>
<h4
id="pokeWeight"
class="subtitle is-4 has-text-centered m-0"></h4>
<h4
id="pokeHeight"
class="subtitle is-4 has-text-centered"></h4>
<h5
id="evolvesFrom"
class="subtitle is-5 has-text-centered"></h5>
</div>
<div
id="pokeMoves"
class="container content is-fluid"></div>
<div
id="pokeStats"
class="container content is-fluid"></div>
<div
id="pokeLore"
class="container content is-fluid has-text-centered"></div>
</section>
<script src="static/js/app.js"></script>
</body>
</html>