Skip to content

Instantly share code, notes, and snippets.

View callebdev's full-sized avatar
📱
building experiences

Calleb Joel Miquissene callebdev

📱
building experiences
View GitHub Profile
@callebdev
callebdev / snakegame.html
Created December 4, 2018 07:01
Many WEB DEVELOPMENT beginners struggle writing the snake game code. The game consists on guiding a snake to eat its food, avoid the snake's head touching any part of its own body . As much as the snake eats the food, it gets bigger. The code is easy and it is not big. Here I will share the game code for who wants to learn more about the code. I…
<!DOCTYPE html>
<html>
<head>
<title></title>
<style>
html, body {
height: 100%;
margin: 0;
}
body {