-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (61 loc) · 2.31 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
<!-- .-. .-.
| \/ |
/, ,_ `'-.
.' 0/ | 0\ \_ `".
.-|\ /`\ '.
.-' _,/ '--'.'|#''---'
`--' | / \#
| / \#
\ ;|\ .\#
|' ' // \ ::\#
\ /` \ ':\#
`"` \.. \#
\::. \#
_ _ _ _ _ \::. \#
___| |_ __ _ _ __ | |_| |__ ___| |__ | | __ _ _ __ \:: \#
/ __| __/ _` | '_ \| __| '_ \ / _ \ '_ \| |/ _` | '_ \ \' .:\#
\__ \ || (_| | | | | |_| | | | __/ |_) | | (_| | | | | \ :::\#
|___/\__\__,_|_| |_|\__|_| |_|\___|_.__/|_|\__,_|_| |_| \ '::\#
\ \#
-->
<!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">
<link rel="stylesheet" href="index.css">
<title>Pokédex</title>
</head>
<body>
<div id="container">
<div id="logo">
<a id="logolink" href="https://pokeapi.co/" target="_blank" >
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/98/International_Pok%C3%A9mon_logo.svg/2560px-International_Pok%C3%A9mon_logo.svg.png"
width="900"
height="300">
</a>
</div>
<div id="pokeInfo">
<div id="buttonDiv">
<input type="text" id="pokeTxt" value="">
<input type="number" id="pokeN" value="">
<button id="butDown">Down</button>
<button id="butUp">Up</button>
</div>
<h1 id="pokeName">Pokémon Name: undefinded</h1>
<h3 id="pokeNum">Pokémon Number: undefinded</h3>
<h3 id="pokeHeight">Pokémon Height: undefinded</h3>
<h3 id="pokeWeight">Pokémon Weight: undefinded</h3>
<h3 id="pokeType">Pokémon Type: undefinded</h3>
</div>
<div id="abilities">
<img id="pokeImg" src="https://wallpaperaccess.com/full/302044.png"
width="600"
height="400">
<table id="board"></table>
</div>
<script src="app.js"></script>
</div>
</body>
</html>