-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (40 loc) · 1.32 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Find a carrot</title>
<!-- fivicon -->
<link rel="icon" type="image/png" href="img/favicon.png">
<!-- 구글폰트 -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap" rel="stylesheet">
<!-- 스타일 -->
<link rel="stylesheet" href="css/style.css">
<!-- fontawesome -->
<script src="https://kit.fontawesome.com/8fc437851e.js" crossorigin="anonymous"></script>
<script src="js/main.js" defer></script>
</head>
<body>
<section class="game">
<header class="game__header">
<button class="game__btn">
<i class="fas fa-play"></i>
</button>
<span class="game__timer">0:0</span>
<span class="game__score">9</span>
</header>
<section class="game__field">
</section>
</section>
<!-- 팝업 -->
<section class="pop-up pop-up--hidden">
<button class="pop-up__refresh">
<i class="fas fa-redo"></i>
</button>
<span class="pop-up__message">REPLAY❓</span>
</section>
</body>
</html>