-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
48 lines (42 loc) · 1.65 KB
/
main.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>✌✊🖐 게임</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container">
<!--왼쪽-->
<div class="left-box">
<fieldset class="score">
<legend>점수</legend>
<span class="user-score">0</span> : <span class="computer-score">0</sapn>
</fieldset>
<fieldset class="record">
<legend>기록</legend>
<ul></ul>
</fieldset>
<button class="all-delete-btn">전체 삭제</button>
</div>
<!--오른쪽-->
<div class="right-box">
<fieldset class="game">
<legend>✌✊🖐</legend>
<div class="grid-box">
<div class="user-choice">나</div>
<div class="computer-choice">컴퓨터</div>
<div class="buttons">
<button class="scissors-btn">가위</button>
<button class="rock-btn">바위</button>
<button class="paper-btn">보</button>
</div>
<div class="result">가위바위보!</div>
</div>
</fieldset>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>