-
Notifications
You must be signed in to change notification settings - Fork 32
/
index.html
30 lines (25 loc) · 853 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css"> <!-- imports stylesheet style.css -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script> <!-- imports jQuery library -->
<title>Pokemon Battle</title>
</head>
<body>
<h1 id="header">Pokemon Battle</h1>
<div id="container">
<div id="battleArea">
<div id="left">
<img class="poke-img" src="./images/questionMark.png">
<button id="leftButton">Get Random Pokemon!</button>
</div>
<div id="right">
<img class="poke-img" src="./images/questionMark.png">
<button id="rightButton">Get Random Pokemon!</button>
</div>
</div>
<button id="battleButton">Battle!</button>
</div>
<script src="script.js"></script> <!-- imports javascript file script.js -->
</body>
</html>