-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (23 loc) · 908 Bytes
/
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
<!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">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1 class="title">숫자 맞추기 게임</h1>
<div id="result-area" class="result-section">숫자를 입력해 주세요</div>
<div id="chance-area" class="chance-section">남은 기회 : 5번</div>
<div class="input-button">
<input type="number" id="user-input" class="user-input-section" placeholder="숫자를 입력하세요">
<button id="go-button" class="go-button">GO!</button>
</div>
<button id="reset-button" class="reset-button">리셋!</button>
</div>
<script src="main.js"></script>
</body>
</html>