-
Notifications
You must be signed in to change notification settings - Fork 0
/
battle.html
62 lines (62 loc) · 2.72 KB
/
battle.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
62
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>MK - JSMarathon - Arenas</title>
<link rel="stylesheet" href="assets/css/battle.css">
</head>
<body>
<div class="root">
<div class="arenas arena1">
<form class="control">
<div class="inputWrap">
<h2>HIT</h2>
<div class="ul">
<input type="radio" name="hit" value="head" id="headHit" required>
<label for="headHit">
<span>HEAD</span>
</label>
<input type="radio" name="hit" value="body" id="bodyHit" required>
<label for="bodyHit">
<span>BODY</span>
</label>
<input type="radio" name="hit" value="foot" id="footHit" required>
<label for="footHit">
<span>FOOT</span>
</label>
</div>
</div>
<div class="inputWrap">
<h2>defence</h2>
<div class="ul">
<input type="radio" name="defence" value="head" id="headDefence" required>
<label for="headDefence">
<span>HEAD</span>
</label>
<input type="radio" name="defence" value="body" id="bodyDefence" required>
<label for="bodyDefence">
<span>BODY</span>
</label>
<input type="radio" name="defence" value="foot" id="footDefence" required>
<label for="footDefence">
<span>FOOT</span>
</label>
</div>
</div>
<div class="buttonWrap">
<button class="button" type="submit">
Fight
</button>
</div>
</form>
</div>
<div class="chat"></div>
<div class="wall-left"></div>
<div class="wall-right"></div>
</div>
<script src="assets/js/battle.js" type="module"></script>
</body>
</html>