-
Notifications
You must be signed in to change notification settings - Fork 839
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
67 changed files
with
3,028 additions
and
3,240 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>About Anagram Checker Game</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
</head> | ||
<body> | ||
<h1 align="center">About Anagram Checker Game</h1> | ||
<div class="container"> | ||
<p>This Anagram Checker Game allows you to check if two words are anagrams of each other. An anagram is a word or phrase formed by rearranging the letters of a different word or phrase, typically using all the original letters exactly once.</p> | ||
|
||
<h2>Features:</h2> | ||
<ul> | ||
<li>Simple and intuitive interface</li> | ||
<li>Quickly check if two words are anagrams</li> | ||
<li>Learn about anagrams and how they work</li> | ||
</ul> | ||
|
||
<h2>About Us:</h2> | ||
<p>We are dedicated to creating fun and educational games that challenge your mind and expand your knowledge of language and literature.</p> | ||
|
||
<h2>Contact Us:</h2> | ||
<p>If you have any questions or feedback about the Anagram Checker Game, feel free to reach out to us at <a href="mailto:[email protected]">[email protected]</a>.</p> | ||
|
||
<p>Follow us on social media for updates and more games!</p> | ||
<ul> | ||
<li><a href="#">Facebook</a></li> | ||
<li><a href="#">Twitter</a></li> | ||
<li><a href="#">Instagram</a></li> | ||
</ul> | ||
|
||
<p>Thank you for playing!</p> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
|
||
# **Brain Game** | ||
|
||
--- | ||
|
||
<br> | ||
|
||
## **Description 📃** | ||
<!-- add your game description here --> | ||
- **Brain Game** is an interactive game where the player needs to determine if the name of the color matches its displayed color. | ||
- This is a single-player game. | ||
|
||
## **functionalities 🎮** | ||
<!-- add functionalities over here --> | ||
- The name of the color is display on the screen,the player checks whether the name of the color matches its displayed color. | ||
- The player have to decide within the time if it matches or not and click on the right option. | ||
- It provide the Keyboard Support where players can use the left arrow key (←) for "tick" and the right arrow key (→) for "cross" option. | ||
<br> | ||
|
||
## **How to play? 🕹️** | ||
<!-- add the steps how to play games --> | ||
- Click on the start button to start the game. | ||
- Checks whether the name of the color matches its displayed color. | ||
- If yes click on "tick" or use left arrow key (←) else click on "cross" or use right arrow key (→). | ||
- If click on wrong option the game ends with the score alert. | ||
|
||
<br> | ||
|
||
## **Screenshots 📸** | ||
|
||
<br> | ||
|
||
![image](../../assets/images/Brain_Game.png) | ||
|
||
<br> | ||
|
||
<!-- ## **Working video 📹** --> | ||
<!-- add your working video over here --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Brain Game</title> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
<body> | ||
<div class="con"> | ||
<div class="intro"> | ||
<h1>Brain Game</h1> | ||
</div> | ||
<div id="prg" class="prg"> | ||
<div id="timeBar"></div> | ||
</div> | ||
<div id="disp" class="hidden"> | ||
<h1 id="colors"></h1> | ||
</div> | ||
<div class="score hidden"> | ||
<h2 id="scr">0</h2> | ||
</div> | ||
<div class="control hidden"> | ||
<button onclick="right()" id="right">✔</button> | ||
<button onclick="wrong()" id="wrong">✖</button> | ||
</div> | ||
<div class="startBt"> | ||
<button onclick="start()" id="startBt">Start</button> | ||
</div> | ||
</div> | ||
<script src="script.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.