-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (49 loc) · 1.56 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
<html>
<head>
<title>Bulbasaur Page</title>
<link href="bulba-entry.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="wrapper">
<div class="name-plate-wrapper">
Name:
<div class="name-plate"> </div>
</div>
<div class="stat-plate">
<p> Stat Plate </p>
</div>
<div class="ivy-portrait">
<img id="portrait-img" class="portrait-img" src="" alt="Ivysaur Official Artwork" />
</div>
<div class="move-prev">
<button class="previous" onClick="prevImage()">Previous</button>
<div class="preview-before">
<div class="preview-before-pic">
<img id="prev-img" src="" height="75" width="75" />
</div>
</div>
</div>
<div id="next" class="move-next">
<button class="next" onClick="nextImage()">Next</button>
<div class="preview-after">
<div class="preview-after-pic">
<img id="next-img" src="" height="75" width="75" />
</div>
</div>
</div>
<div class="information-plate" id="information-plate-background">
<div>
<h3> Description : </h3>
<div class="information">
</div>
</div>
</div>
</div>
<div class="pokeball">
<div class="red-ball"></div>
<div class="white-ball"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>