-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (34 loc) · 1.99 KB
/
index.html
File metadata and controls
36 lines (34 loc) · 1.99 KB
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
<!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-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container text-center">
<div style="text-align: center;">
<h1 style="font-weight: bold; padding: 20px;">숫자 맞추기 게임</h1>
<div id="result-area" style="padding-bottom: 10px;">결과 값이 여기 나옵니다.</div>
<div id="chance-area" style="padding-bottom: 10px;">남은 찬스 : </div>
</div>
<div style="text-align: center; padding-bottom: 20px;">
<img id="game-image" style="height: 250px;" src="./image/99B016465E307B5D05.gif">
</div>
<div class="input-group mb-3" style="margin: 0 auto; width: auto; max-width: 584px;">
<input type="number" id="user-input" class="form-control" placeholder="" aria-label="Example text with two button addons">
<button id="play-button" class="btn btn-outline-secondary" type="button">Go!</button>
<button id="reset-button" class="btn btn-outline-secondary" type="button">리셋 버튼</button>
</div>
<div>
<a style="text-decoration: none;" href="./second-project/index.html">Todo List 프로젝트를 보러 가볼까요?</a>
<br>
<a style="text-decoration: none;" href="./third-project/index.html">NewYork Times 프로젝트를 보러 가볼까요?</a>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
<script src="main.js"></script>
</body>
</html>