-
Notifications
You must be signed in to change notification settings - Fork 0
/
mokepon.html
56 lines (45 loc) · 1.72 KB
/
mokepon.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
<!DOCTYPE html>
<html>
<head>
<title>MOKEPON!</title>
<script src="/mokepon.js"></script>
<link rel="stylesheet" href="/styles.css">
</head>
<body>
<h1 class="title">MOKEPON! 🔥💧🌱</h1>
<section id="comment-about-the-proyect">
<h2>This is my second web game</h2>
<h2>Im very motivated to keep doing this!</h2>
</section>
<section id="choose-partner">
<h2>Choose your partner:</h2>
<label for="monab">Justoz</label>
<input type="radio" name="partner" id="justoz"/>
<label for="nestorf">Nestorf</label>
<input type="radio" name="partner" id="nestorf"/>
<label for="justoz">Monab</label>
<input type="radio" name="partner" id="monab"/>
<p>
<button id="partner-button">Select</button>
</p>
</section>
<section id="choose-attack">
<h2>Choose your attack:</h2>
<p>Your partner <span id="player-partner">mokepon</span> has <span id="player-hp">3</span> HP left</p>
<p>The opponent partner <span id="opponent-partner">mokepon</span> has <span id="opponent-hp">3</span> HP left</p>
<p>
<button id="fire-button">Fire🔥</button>
<button id="water-button">Water💧</button>
<button id="plant-button">Plant🌱</button>
</p>
</section>
<section id="combat-log">
<p></p>
</section>
<section id="reboot">
<p>
<button id="reboot-button">Reboot</button>
</p>
</section>
</body>
</html>