-
Notifications
You must be signed in to change notification settings - Fork 1
/
home.html
49 lines (48 loc) · 1.95 KB
/
home.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
<html>
<head>
<title>Pokedex</title>
</head>
<link rel = "stylesheet" type = "text/css" href = "style.css" />
<body>
<div id="header">
<div id = "bigCircle"></div>
<div id = "sc1" class = "smallCircle"></div>
<div id = "sc2" class = "smallCircle"></div>
<div id = "sc3" class = "smallCircle"></div>
</div>
<div id = "body">
<div id = "grid1">
<img id = "poke" src = "images/Ditto.jpg" style = "height:auto;"/>
<div id = "projectTitle">
<i>Bits Of Good</i><br><b>Proj1</b>
</div>
</div>
<div id = "grid2">
<div id = "name">
<input type = "text" id = "search"> <br/><br/>
<table id = "typeTable">
<tr>
<td class = "type" id = "type1">Normal</td>
<td class = "type" id = "type2">None</td>
<button class = "arrow", id = "back"><img src = "images/la.png" style = "width: 20px;"></td>
<button class = "arrow", id = "next"><img src = "images/ra.png" style = "width: 20px;"></td>
</tr>
</table>
</div>
<div id = "tabs">
<table id = "tabsTable">
<tr>
<td><button id = "INFO">INFO</button></td>
<td><button id = "MOVES">MOVES</button></td>
</tr>
<tr>
<td><button id = "LOCATION">LOCATION</button></td>
<td><button id = "EVOLUTION">EVOLUTION</button></td>
</tr>
</table>
</div>
</div>
</div>
<script src = "app.js"></script>
</body>
</html>