Skip to content

Commit

Permalink
Merge pull request #4262 from zalabhavy/Dsa_quiz
Browse files Browse the repository at this point in the history
Dsa_quiz game added
  • Loading branch information
kunjgit authored Jun 9, 2024
2 parents d02f04f + bbf50b4 commit fbee699
Show file tree
Hide file tree
Showing 7 changed files with 562 additions and 3 deletions.
37 changes: 37 additions & 0 deletions Games/Dsa_quiz_game/README.md
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>


26 changes: 26 additions & 0 deletions Games/Dsa_quiz_game/index.html
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>
Loading

0 comments on commit fbee699

Please sign in to comment.