-
Notifications
You must be signed in to change notification settings - Fork 841
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into Bubble'z-Popper
- Loading branch information
Showing
73 changed files
with
2,403 additions
and
43 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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# **Dsa_quiz_game** | ||
|
||
--- | ||
|
||
<br> | ||
|
||
## **Description 📃** | ||
|
||
-The DSA Quiz Game is for educational purposes and contains DSA problems. | ||
-It will help strengthen concepts. | ||
-Increase your self-confidence. | ||
-Easy to play. | ||
|
||
## **functionalities 🎮** | ||
|
||
-Contains 50+ DSA questions. | ||
-Randomly selects any 10 questions. | ||
-Shows results after the game. | ||
-Displays the correct answer if your answer is wrong. | ||
|
||
<br> | ||
|
||
## **How to play? 🕹️** | ||
-Start by selecting any one option. The game will show you the correct answer if your answer is wrong. | ||
|
||
|
||
<br> | ||
|
||
## **Screenshots 📸** | ||
|
||
<br> | ||
![image](../../assets/images/Dsa_quiz1.png) | ||
![image](../../assets/images/Dsa_quiz2.png) | ||
|
||
<br> | ||
|
||
|
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,26 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="style.css"> | ||
<title>Quizz App</title> | ||
</head> | ||
<body> | ||
<div class="app"> | ||
<h1>Simple Quiz</h1> | ||
<div class="quiz"> | ||
<h2 id="question">This is Question</h2> | ||
<div id="answer-btn"> | ||
<button class="btn">Answer1</button> | ||
<button class="btn">Answer2</button> | ||
<button class="btn">Answer3</button> | ||
<button class="btn">Answer4</button> | ||
</div> | ||
<button id="next-btn">Next</button> | ||
</div> | ||
</div> | ||
|
||
<script src="script.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.