-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (25 loc) · 859 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
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<title>🐍 𝐒𝐍𝐀𝐊𝐄 🐍</title>
<meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Replica Snake Game. On behalf of BBZ Biel.">
<meta name="author" content="Adam Dolinsky">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="js/jquery.js"></script>
</head>
<body>
<div class="wrapper">
<ul>
<li><p id="starterTitle">Snake</p></li>
<li><a id="starterInformation" href="#">Click to play!</a></li>
</ul>
<figure>
<img id="nokia" src="img/nokia.png" alt="Nokia Snake Game">
<img id="starter" src="img/starter.png" alt="Nokia Snake Game">
</figure>
<canvas id="canvas" width="370" height="260"></canvas>
<script src="js/index.js"></script>
</div>
</body>
</html>