-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (39 loc) · 1.37 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
<!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>jjangGame</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="imgs/favicon.ico">
<script src="https://kit.fontawesome.com/44e76333c8.js" crossorigin="anonymous"></script>
<!-- <script src="src/practice.js" defer></script> -->
</head>
<body>
<section class="game">
<section class="game__header">
<button class="game__btn">
<i class="fa-solid fa-play"></i>
</button>
<span class="game__timer">0 : 0</span>
<span class="game__score">0</span>
</section>
<section class="game__area"></section>
</section>
<section class="popUp popUp__hide">
<button class="popUp__refresh">
<i class="fa-solid fa-rotate"></i>
</button>
<span class="popUp__message"></span>
</section>
<section class="introductionPopup">
<span class="introductionPopup__message">Click the puppies which are not angry.</span>
</section>
<script type="module" src="./src/game.js"></script>
<script type="module" src="./src/sound.js"></script>
<script type="module" src="./src/area.js"></script>
<script type="module" src="./src/popup.js"></script>
<script type="module" src="./src/index.js"></script>
</body>
</html>