-
Notifications
You must be signed in to change notification settings - Fork 0
/
mokepon.html
72 lines (45 loc) · 1.38 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
</html>
<head>
<meta chartsets="utf-8" />
<title> Mokepon</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<section id="select-pet">
<h1 class="title">Mokepon</h1>
<h2 class="subtitle">Choose your pet:</h2>
<div id = "cardsContainer" class="cards">
</div>
<button id="Button-pet">Select</button>
</section>
<section id="Select-attack">
<h1 class="title">Mokepon</h1>
<h2 class="subtitle">Choose your attack:</h2>
<div id='attackContainer' class="cards-attacks">
</div>
<div>
<div id="messages">
<p id="result">GOOD LUCK!!</p>
<section id="Reset">
<button id="button-Reset">Reset</button>
</section>
</div>
</div>
<div class="attacks">
<div class="attacks-player">
<p id="Life-player">3</p>
<p id="pet-player"></p>
<div id="attacks-of-player"></div>
</div>
<div class="attacks-enemy">
<p id="Life-enemy">3</p>
<p id="pet-enemy"></p>
<div id="attacks-of-enemy"></div>
</div>
</div>
</section>
<script src="./mokepon.js"></script>
</body>
</html>