-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (37 loc) · 1.31 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
<!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">
<title>Games! - Snake, Pong (in future)</title>
<!-- LINKS -->
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/2.9.7/jquery.fullpage.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- content -->
<div id="fullpage">
<div class="section">
<div class="content">
<canvas id="snake" width="500" height="500"> </canvas>
</div>
</div>
<div class="section">
<div class="content">
<div class="comingSoon">
<h1>Coming soon</h1>
</div>
<canvas id="pong" width="500" height="500"> </canvas>
</div>
</div>
</div>
<!-- SCRIPTS -->
<script src="https://code.jquery.com/jquery-3.3.1.js" integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/2.9.7/jquery.fullpage.min.js"></script>
<script src="./assets/snake.js"></script>
<script src="main.js"></script>
</body>
</html>