forked from 0shuvo0/squidgame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (32 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
<!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">
<meta name="description" content="Simple red light green light game from squid game.">
<meta name="robots" content="index, follow">
<meta name="keywords" content="red, green, light, game, squid, game, simple, game, html5, canvas, javascript, web, development, threejs, three, js">
<meta property="og:image" content="img/preview.png" />
<link rel="stylesheet" href="style.css">
<title>Squid Game | Red Light Green Light</title>
</head>
<body>
<h1 class="text">Squid Game</h1>
<div class="modal">
<div class="modal-content">
<h1 class="title">Red Light Green Light</h1>
<p class="info">
Top ball is Player 1, bottom ball is Player 2.
Player 1 can press <b>Up Arrow</b> to move player 2 can press <b>w</b> to move.
Rules are same as it was in squid game.
</p>
<button class="start-btn">loading...</button>
</div>
</div>
<script src="three.min.js"></script>
<script src="GLTFLoader.js"></script>
<script src="gsap.min.js"></script>
<script src="main.js"></script>
</body>
</html>