mirror of
https://github.com/Aviortheking/Snake.git
synced 2025-07-03 21:49:17 +00:00
WIP
This commit is contained in:
23
index.html
Normal file
23
index.html
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" lang="en-US">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>yolo</title>
|
||||
<style>
|
||||
canvas {
|
||||
border: 1px solid #d3d3d3;
|
||||
background-color: #f1f1f1;
|
||||
}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<canvas id="snake" width="480" height="480"></canvas>
|
||||
</body>
|
||||
<script type="text/javascript" src="prgm.js"></script>
|
||||
<script>
|
||||
window.onload = function() {
|
||||
Game.init();
|
||||
};
|
||||
</script>
|
||||
</html>
|
Reference in New Issue
Block a user