-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (84 loc) · 2.68 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!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>Donut Game</title>
<link rel="stylesheet" href="style.css" />
<script type="module" src="src/main.js" defer></script>
<!-- font awesome -->
<script
src="https://kit.fontawesome.com/5699175077.js"
crossorigin="anonymous"
></script>
<!-- google font-->
<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=Patrick+Hand&display=swap"
rel="stylesheet"
/>
</head>
<body>
<section id="main">
<div class="main__area">
<span>Welcome to Donut Game</span>
<div class="main__image">
<div class="main__image__row">
<img src="img/donut_1.png" />
<img src="img/donut_12.png" />
<img src="img/donut_10.png" />
</div>
<div class="main__image__row">
<img src="img/donut_14.png" />
<img src="img/donut_5.png" />
<img src="img/donut_18.png" />
</div>
<div class="main__image__row">
<img src="img/donut_7.png" />
<img src="img/donut_4.png" />
<img src="img/donut_9.png" />
</div>
</div>
<button>
<i class="fas fa-play"></i>
</button>
</div>
</section>
<section id="show-page" class="round">
<section class="show">
<span class="show__count">5</span>
<div class="show__field"></div>
</section>
<section class="pop-up">
<span class="pop-up__message"
>Remember the Donuts below <br />in order!</span
>
<button class="pop-up__btn">
<i class="fas fa-play"></i>
</button>
</section>
</section>
<section id="game-page" class="round">
<section class="game">
<header class="game__header">
<button class="game__button">
<i class="fas fa-stop"></i>
</button>
<div class="game__life"></div>
</header>
<section class="game__field"></section>
<section class="game__answer">
<div class="answer__field">Drag the cursor with DONUT here!</div>
</section>
</section>
<section class="pop-up pop-up--hide">
<span class="pop-up__message">I'm on FIRE!</span>
<button class="pop-up__btn">
<i class="fas fa-redo-alt"></i>
</button>
</section>
</section>
</body>
</html>