diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..6f3a291 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5501 +} \ No newline at end of file diff --git a/README.md b/README.md index af0394b..b229db0 100644 --- a/README.md +++ b/README.md @@ -1,40 +1,19 @@ -# miniHACKATHON #0 -Welcome to our 3-hour Mini Hackathon! Geared towards beginners and first-timers, this rapid event is your chance to explore, build, and ship your project. Unleash your creativity and enjoy the journey of creating something new! 🚀 - -# Getting Started -## Fork the Repository -- Click on the "Fork" button in the top right corner to create your own copy of this repository. -## Creating your Project -- Navigate to the root directory of your forked repository. -- Create a new folder with your team's name. -- Add your source code files to this folder. -- Inside the folder, create a README.md file with the following information: ``` -# [Team Name] +# [Gen] ### Team Members: -- [Member 1] -- [Member 2] -- [Member 3] +- Janaki Ratheesh + ### Project Title: -[Your Project's Title] +Snake game website ### Description: -[Brief description of what you built] +A classic implementation of the Snake game using HTML, CSS, and JavaScript ### How we Built It: -[Brief description of the tools, languages, or technologies used] +JavaScript, CSS, and HTML were utilised in the process. ### How to Use It: -[Brief instructions on how to use your project] - +In the game, the player earns points by maneuvering the snake to eat pieces of food that appear at random locations on the screen. The snake has to be moved using arrows. Each time the snake eats food, it grows longer and moves faster, making the game progressively more difficult.The game ends when the snake either moves into the screen’s border or moves into itself.The objective of the game is to eat as much food as possible before the game ends. ``` -## Updating the Index -- Open the index.md file in the root directory. -- Add your team name and project title in the following format: -``` -- [Team Name]: [Project Title] -``` - -Make a PR when you are done with the project , alright now hack away ! diff --git a/design.html b/design.html new file mode 100644 index 0000000..c8df8c7 --- /dev/null +++ b/design.html @@ -0,0 +1,189 @@ + + + + + + +
+
+ Game Over + +
+ + + + diff --git a/index.md b/index.md new file mode 100644 index 0000000..fbb34fc --- /dev/null +++ b/index.md @@ -0,0 +1 @@ +Gen: Snake game website diff --git a/player.png b/player.png new file mode 100644 index 0000000..2987d1e Binary files /dev/null and b/player.png differ diff --git a/snake.png b/snake.png new file mode 100644 index 0000000..c376321 Binary files /dev/null and b/snake.png differ