-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TETRIS</title>
<link rel="stylesheet" href="./css/style.css" />
<!-- https://ui.toast.com/weekly-pick/ko_20191216 -->
<!-- https://juneforpay.tistory.com/entry/JavaScript%EB%A1%9C-%ED%85%8C%ED%8A%B8%EB%A6%AC%EC%8A%A4-%EB%A7%8C%EB%93%A4%EA%B8%B0-%EC%BD%94%EB%A6%B0%EC%9D%B4%EA%B0%80-%EC%BD%94%EB%A6%B0%EC%9D%B4%EB%A5%BC-%EC%9C%84%ED%95%9C-A-Z-%EC%84%A4%EB%AA%85-3 -->
</head>
<body>
<div class="wrapper">
<div class="player-title">player 1</div>
<header class="logo">
<img
class="logo-img"
src="./img/logo-s.png"
alt="테트리스 타이틀 로고"
/>
</header>
<div class="playground">
<ul></ul>
<div class="score">0</div>
</div>
<div class="next-block">
<ul></ul>
<div class="next-block-title">next</div>
</div>
<div class="game-text">
<span>게임종료</span>
<button>다시 시작</button>
</div>
</div>
<script src="./js/tetris.js" type="module"></script>
</body>
</html>