-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (45 loc) · 1.65 KB
/
Copy pathindex.html
File metadata and controls
55 lines (45 loc) · 1.65 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Star Wars with jQuery!</title>
<link href="https://fonts.googleapis.com/css?family=Share+Tech+Mono" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="assets/css/style.css">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="assets/javascript/game.js"></script>
</head>
<body>
<div class="main-section-title">Mortal Kombat RPG!</div>
<div id="main-game-section">
<!-- Where the characters are initially available to be selected. -->
<div id="characters-section">
<div class="section-title">Select Your Character</div>
</div>
<!-- Section for our selected character. -->
<div id="selected-character-section">
<div class="section-title">Your Character</div>
<!-- Where our selected character will appear. -->
<div id="selected-character"></div>
</div>
<!-- Where our enemies available to attack will appear. -->
<div id="available-to-attack-section">
<div class="section-title">Enemies Available To Attack</div>
</div>
<div class="section-title">Fight Section</div>
<div id="fight-section">
<button id="attack-button">Attack</button>
</div>
<div id="action">
<div class="character-section">
<div class="section-title">Defender</div>
<!-- Where our defender will appear. -->
<div id="defender"></div>
</div>
</div>
</div>
<!-- Area for game messages. -->
<div id="game-message"></div>
</body>
</html>