-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (32 loc) · 871 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
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>Top Gun - RPG Game</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="assets/css/reset.css"></link>
<link rel="stylesheet" type="text/css" href="assets/css/style.css"></link>
</head>
<body>
<div class ="container">
<header>
<h2 id="instructions">Choose A Player</h2>
</header>
<section id="fight">
<div id="fightArena">
<div id="yourPlayer"></div>
<div id="enemy"></div>
<div id="message"></div>
</div>
</section>
<section id="chooseCharacters">
<div id="characters"></div>
<div id="attackButton">
<button id="attack">Attack</button>
</div>
</section>
</div>
<!-- JQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="assets/javascript/game.js"></script>
</body>
</html>