-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (50 loc) · 1.98 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
<!doctype html>
<html>
<head>
<title>Batalla RPG</title>
<meta charset="utf-8">
<link rel="stylesheet" href="styles.css" type="text/css">
<script src="js/rpg.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<h1 style="color:red"><FONT FACE="algerian">RPG Battle</FONT></h1>
<main>
<section class="parties">
<section id="heroes" class="party">
<h1><FONT FACE="algerian">Heroes</FONT></h1>
<ul class="character-list"></ul>
</section>
<section id="monsters" class="party">
<h1><FONT FACE="algerian">Monsters</FONT></h1>
<ul class="character-list"></ul>
</section>
</section><!-- parties -->
<section class="info" style="background-color:red">
<p id="battle-info" style="color:white"><FONT FACE="comic sans">F i g h t</FONT></p>
</section><!-- info -->
<section class="battle-menu">
<form name="select-action" style="display:none">
<FONT FACE="algerian"><br>Chose an action: </FONT>
<ul class="choices"></ul>
<p><button type="submit">Select action</button></p>
</form>
<form name="select-spell" style="display:none">
<ul class="choices"></ul>
<p><button type="submit">Select spell</button> or
<a href="#" class="cancel">Cancel</a>
</p>
</form>
<form name="select-target" style="display:none">
<ul class="choices"></ul>
<p><button type="submit">Select target</button> or
<a href="#" class="cancel">Cancel</a>
</p>
</form>
<br><form name="play-again"method="post" style="display:none">
<input type="button" value="Play Again" onclick="window.location.reload()" />
</form>
</section>
</main>
</body>
</html>