forked from yujo11/javascript-baseball-precourse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 799 Bytes
/
Copy pathindex.html
File metadata and controls
26 lines (26 loc) · 799 Bytes
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
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8" />
<title>숫자 야구 게임</title>
</head>
<body>
<div id="app">
<h1>⚾ 숫자 야구 게임</h1>
<p>
<strong>1~9까지의 수</strong>를 중복없이 <strong>3개</strong>를 작성해주세요. <br />
올바른 예) 139 <br />
틀린 예) 122
</p>
<input type="text" id="user-input" />
<button id="submit">확인</button>
<h3>📄 결과</h3>
<div id="result"></div>
<div id="suggestion" style="display: none">
<span>게임을 새로 시작하시겠습니까?</span>
<button id="game-restart-button">게임 재시작</button>
</div>
</div>
<script type="module" src="src/index.js"></script>
</body>
</html>