-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 996 Bytes
/
index.html
File metadata and controls
28 lines (28 loc) · 996 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="./css/index.css">
<script defer src="./scripts/functions.js"></script>
<script defer src="./scripts/main.js"></script>
<script defer src="./scripts/index.js"></script>
<title>Face Detection Game</title>
</head>
<body>
<div class="container">
<h1> Face Detection Game </h1>
<p class="intro">
After you press the start button you will see 5 emojis arranged in random order.
Imitate the emojis with your face as fast as you can,
but pay attention to do it in the right order from left to right.
Hurry up the clock is ticking.
</p>
<p class="emojis"></p>
<button class='start-game btn'> Play! </button>
<p class="msg">The game is not supported in safari browser.</p>
</div>
</body>
</html>