-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
22 lines (22 loc) · 1019 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Snake Game</title>
<link rel="icon" href="./Assets/icon.png">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Bungee+Inline&display=swap&text=ABFGPSTYabcdefghiklmnoprstuy0123456789:" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Fira+Mono:wght@700&display=swap&text=CHSceghinortu0123456789" rel="stylesheet">
<link rel="stylesheet" href="Contents/style.css" />
</head>
<body>
<img id = "loading" src="Assets/loading.gif" />
<p id = "window-size-error-message">The Window Size is too small to play the game comfortably</p>
<canvas id = "scoreWindow"></canvas>
<canvas id = "gameWindow"></canvas>
<p style = "font-family: 'Bungee Inline'"> </p>
<p style = "font-family: 'Fira Mono'"> </p>
<script src="Contents/script.js"></script>
</body>
</html>