-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbattle.html
76 lines (58 loc) · 1.95 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="module" src="scriptBattle.js" defer></script>
<link rel="stylesheet" href="styleBattle.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=VT323">
<title>Battle</title>
</head>
<body>
<header>
<h1 id="level"></h1>
</header>
<div class="ui">
<div id="artifacts">
<p>Artifacts : </p>
<!--Artifact-->
</div>
</div>
<div class="intent">
<div id="intent-player">
</div>
<div id="intent-opponent">
</div>
</div>
<div class="arena">
<div class="container-button">
<button id="button-fight">Fight!</button>
</div>
<div class="background">
<div class="healthbars">
<div id="combo-p">
<p id="combo-number"></p>
<p class="combo-text">COMBO</p>
</div>
<progress id="player-health" value = "100" max = "100"></progress>
<progress id="opponent-health" value = "100" max = "100"></progress>
</div>
<img class="background" src="img/bckgrnd.png" alt="">
</div>
<div class="dmg">
<p id="dmg-number-player">10</p>
<p id="dmg-number-opponent">10</p>
</div>
<div class="duelists">
<img id="mc" src="img/mc/stand.gif" alt="">
<img id="opponent" src="" alt="">
</div>
</div>
<div id="deck">
<div id="endfight">
<p id="endfight-text">You lose...<br><br> Proceed to the next bpzjizefhjzepifhjzeiofhzejofzehfozehf</p>
</div>
</div>
</body>
</html>