https://github.com/sharadcodes/quizzo_web_component
An Open Source web component for your json quizzes.
https://github.com/sharadcodes/quizzo_web_component
Last synced: 6 months ago
JSON representation
An Open Source web component for your json quizzes.
- Host: GitHub
- URL: https://github.com/sharadcodes/quizzo_web_component
- Owner: sharadcodes
- License: gpl-3.0
- Created: 2020-05-28T18:27:37.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-07T05:49:59.000Z (over 5 years ago)
- Last Synced: 2025-01-18T08:22:51.439Z (12 months ago)
- Language: JavaScript
- Homepage:
- Size: 51.8 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Quizzo Web Component
An Open Source web component for your quizzes.
> Developer: [Sharad Raj](https://github.com/sharadcodes/)
## UI

## [Live Demo](https://sharadcodes.github.io/quizzo_web_component/example/)
## USAGE
The `json` file should be in the following format. For example file check [ques.json](https://sharadcodes.github.io/quizzo_web_component/example/ques.json)
```json
[
{
"que": "Which among the following is not an operating system ?",
"opt": [
"Fedora",
"MacOS",
"Windows",
"Android"
],
"ans": 3
},
{
"que": "Is Windows good",
"opt": [
"Yes",
"No"
],
"ans": 2
}
]
```
```html
Quizzo Web Component Example
```