Skip to content

Commit 3c8c72d

Browse files
authored
Merge pull request #247 from RiyaGupta89/quiz-readme
Added a readme.md file in quiz web app
2 parents e701829 + 19565c7 commit 3c8c72d

File tree

6 files changed

+49
-2
lines changed

6 files changed

+49
-2
lines changed

QUIZ WEB APP/.gitkeep

Whitespace-only changes.

QUIZ WEB APP/README.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Welcome to the Quiz App 🤔
2+
3+
This is a basic HTML, CSS, JAVASCRIPT quiz app where user can answer the questions that are being given in the quiz. And at the last your total score is displayed.
4+
5+
## 💻 Tech Stack
6+
7+
<br>
8+
9+
![HTML](https://img.shields.io/badge/html5%20-%23E34F26.svg?&style=for-the-badge&logo=html5&logoColor=white)
10+
![CSS](https://img.shields.io/badge/css3%20-%231572B6.svg?&style=for-the-badge&logo=css3&logoColor=white)
11+
![JS](https://img.shields.io/badge/javascript%20-%23323330.svg?&style=for-the-badge&logo=javascript&logoColor=%23F7DF1E)
12+
13+
<br>
14+
15+
16+
### How to get the project on your local machine:
17+
18+
---
19+
20+
```
21+
git clone https://github.com/Ayushparikh-code/Web-dev-mini-projects.git
22+
```
23+
24+
- Go to the directory
25+
- Go to QUIZ WEB APP folder
26+
- Open the terminal and run
27+
```
28+
node app.js
29+
```
30+
- Open *localhost:3000* in your browser.
31+
32+
***
33+
###Remember:
34+
If you are using node then you need to reload your server everytime you make changes in your file. Otherwise if you have nodemon installed, you can use nodemon.
35+
***
36+
37+
<br>
38+
39+
## Screenshots
40+
41+
![Demo1](screenshots/quiz1.png)
42+
![Demo2](screenshots/quiz2.png)
43+
![Demo3](screenshots/quiz3.png)
44+
<br>
45+
46+
47+
## Happy Coding!

QUIZ WEB APP/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ <h3 id="heading">I solemny swear that I am upto no good!</h3>
2323
<div class="container">
2424
<div id="home" class="flex-column flex-center">
2525
<h1>Harry Potter Quiz</h1>
26-
<a href="/QUIZ WEB APP/game.html" class="btn">Play</a>
27-
<a href="/QUIZ WEB APP/highscores.html" id="highscore-btn" class="btn">Highscore<i class="fas fa-crown"></i></a>
26+
<a href="/game.html" class="btn">Play</a>
27+
<a href="/highscores.html" id="highscore-btn" class="btn">Highscore<i class="fas fa-crown"></i></a>
2828

2929
</div>
3030
</div>

QUIZ WEB APP/screenshots/quiz1.png

272 KB
Loading

QUIZ WEB APP/screenshots/quiz2.png

88 KB
Loading

QUIZ WEB APP/screenshots/quiz3.png

35.7 KB
Loading

0 commit comments

Comments
 (0)