-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<h1 class="mb-3"><strong>숫자 맞추기 게임</strong></h1>
<div id="result-area" class="mb-3">시작하세요!</div>
<div id="chance-area" class="mb-3">남은 횟수:</div>
<span
><input
type="number"
id="user-input"
placeholder="1부터 100까지 숫자를 입력"
style="width: 250px; margin: auto"
class="form-control mb-3"
/>
</span>
<button id="play-button" type="button" class="btn btn-dark">Go!</button>
<button id="reset-button" type="button" class="btn btn-dark">
Reset
</button>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm"
crossorigin="anonymous"
></script>
<script src="main.js"></script>
</div>
</body>
</html>