-
Notifications
You must be signed in to change notification settings - Fork 587
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1981 from itzelmald/main
Updated Typing Speed Game documentation/readme.md
- Loading branch information
Showing
1 changed file
with
52 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,56 @@ | ||
Topic Name:- Typing Speed Game. | ||
# Typing Speed Game | ||
|
||
Tech stack used:- HTML, CSS, JavaScript | ||
## Description | ||
Typing Speed Game is a web application which allow's users to test their typing speed by typing various texts as fast as they can. During the game, users can see typing metrics such as number of mistakes, WPM (words per minute), and CPM (characters per minute). | ||
|
||
Description:- Created a simple typing speed game using html, css and javascript. It has a time limit within which the user has to type the displayed paragraph. It will also show the number of mistakes done by the user. Beside all this, it will also show the wpm (Words per minute) and cpm (Characters per minute). | ||
## Technologies used | ||
|
||
- HTML | ||
- CSS | ||
- JavaScript | ||
|
||
## Features | ||
|
||
- A time limit in which the user has to type the displayed paragraph | ||
- Tracks number of mistakes in the user's typed text | ||
- Real time WPM (words per minute) tracker | ||
- Real time CPM (characters per minute) tracker | ||
- Option to try again with new text | ||
|
||
## Screenshots | ||
|
||
Screenshot of my project:- | ||
![typing_game](https://user-images.githubusercontent.com/101787864/212467342-fa593ef0-b25e-4554-9258-949c64ad4c8d.jpg) | ||
|
||
## Getting Started | ||
|
||
### Installation | ||
|
||
To run Typing Speed Game locally: | ||
|
||
1. Clone the repository: | ||
|
||
```bash | ||
git clone https://github.com/TusharKesarwani/Front-End-Projects.git | ||
``` | ||
|
||
2. Navigate to the project directory: | ||
|
||
```bash | ||
cd Projects | ||
cd "Typing Speed Game" | ||
``` | ||
|
||
3. Open the **index.html** file in any web browser of your choice. | ||
|
||
4. Begin typing the text that appears to test your typing speed! | ||
|
||
### Usage | ||
|
||
1. Begin typing the displayed text as it appears. The timer will begin once you start typing. | ||
|
||
2. If you make a mistake, use the backspace button to undo it or continue typing. | ||
|
||
3. Try to finish typing the text before time runs out. | ||
|
||
4. Click the "Try Again" button to play again with a different text! | ||
|