-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
50 lines (50 loc) ยท 1.63 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
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8" />
<link href="./style.css" rel="stylesheet" />
<title>๐ ๋ณด์ค ๋ชฌ์คํฐ ์ก๊ธฐ</title>
</head>
<body>
<div id="app">
<h1>๐ ๋ณด์ค ๋ชฌ์คํฐ ์ก๊ธฐ</h1>
<form id="input-section">
<h3>๐๏ธ ํ๋ ์ด์ด ์ด๋ฆ ์
๋ ฅ</h3>
<input id="name-input" />
<h3>๐น ๋ณด์ค ๋ชฌ์คํฐ HP ์
๋ ฅ</h2>
<input id="boss-status-input" />
<h3>๐ ํ๋ ์ด์ด HP, MP ์
๋ ฅ(,๋ก ๊ตฌ๋ถ)</h3>
<input id="player-status-input" />
<div>
<button id="start-raid-button">๋ ์ด๋ ์์!</button>
</div>
</form>
<section class="game-section hide" >
<table class="result">
<tr>
<td >BOSS HP</td>
<td colspan="3"></td>
<td id="boss-hp" style="text-align: end;" colspan="2">โค๏ธ</td>
</tr>
<tr>
<td colspan="5">
<pre id="boss-shape"></pre>
</td>
</tr>
<tr>
<td id="player-name"></td>
<td>HP</td>
<td id="player-hp">โค๏ธ</td>
<td>MP</td>
<td id="player-mp">๐</td>
</tr>
</table>
<div class="command">
<button type="button" id="physical-attack">โ๏ธ ๋ฌผ๋ฆฌ ๊ณต๊ฒฉ</button>
<button type="button" id="magic-attack">๐ช ๋ง๋ฒ ๊ณต๊ฒฉ</button>
</div>
</section>
</div>
<script type="module" src="src/index.js"></script>
</body>
</html>