-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 730 Bytes
/
Copy pathindex.html
File metadata and controls
26 lines (26 loc) · 730 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
<html>
<head>
<title>Snake Game</title>
<style>
canvas{
display: block;
margin: 0 auto;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: red;
color: white;
text-align: center;
}
</style>
</head>
<body>
<canvas id="snake" width="608" height="608"></canvas>
<div class="footer"><p>Made with ❤ by <a href="https://anush-codergirl.neocities.org/" target="_blank">Anushka Raj</a></p>
</div>
<script src="snake.js"></script>
</body>
</html>