-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (46 loc) · 1.55 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
<!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>RPG Battle</h1>
<main>
<section class="parties">
<section id="heroes" class="party">
<h1>Heroes</h1>
<ul class="character-list"></ul>
</section>
<section id="monsters" class="party">
<h1>Monsters</h1>
<ul class="character-list"></ul>
</section>
</section><!-- parties -->
<section class="info">
<p id="battle-info">Fight!</p>
</section><!-- info -->
<section class="battle-menu">
<form name="select-action" style="display:none">
<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 id="b" 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>
</section>
</main>
</body>
</html>