Skip to content

Commit

Permalink
Merge branch 'Harmony_Mixer' of https://github.com/sidharth2829/GameZone
Browse files Browse the repository at this point in the history
 into Harmony_Mixer
  • Loading branch information
sidharth2829 committed Jun 9, 2024
2 parents 781b9ee + fbee699 commit 8f01478
Show file tree
Hide file tree
Showing 73 changed files with 2,402 additions and 43 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 8f01478

Please sign in to comment.