From c1d0bdea6bcd38493c2641e932add3aaf88e2345 Mon Sep 17 00:00:00 2001
From: 1911aditi <146438609+1911aditi@users.noreply.github.com>
Date: Thu, 6 Jun 2024 17:27:08 +0530
Subject: [PATCH 1/5] Add files via upload
---
Games/snake/README.md | 23 ++++++++
Games/snake/index.html | 131 +++++++++++++++++++++++++++++++++++++++++
Games/snake/script.js | 96 ++++++++++++++++++++++++++++++
Games/snake/style.css | 17 ++++++
4 files changed, 267 insertions(+)
create mode 100644 Games/snake/README.md
create mode 100644 Games/snake/index.html
create mode 100644 Games/snake/script.js
create mode 100644 Games/snake/style.css
diff --git a/Games/snake/README.md b/Games/snake/README.md
new file mode 100644
index 0000000000..d691f36bc7
--- /dev/null
+++ b/Games/snake/README.md
@@ -0,0 +1,23 @@
+# Snake Game
+
+This is a simple Snake Game implemented in HTML CSS and JavaScript.
+
+## How to Play
+
+- Use the arrow keys to control the snake's direction.
+- Eat the red food blocks to grow the snake and increase your score.
+- Avoid colliding with the walls or the snake itself.
+
+
+## Development
+
+To run the game locally:
+
+1. Clone this repository.
+2. Open `index.html` in your browser.
+
+## Acknowledgements
+
+- The Snake Game logic is inspired by classic snake games.
+- CSS styles for the game layout are defined in `styles.css`.
+
diff --git a/Games/snake/index.html b/Games/snake/index.html
new file mode 100644
index 0000000000..f37b812d73
--- /dev/null
+++ b/Games/snake/index.html
@@ -0,0 +1,131 @@
+
+
+