An open API service indexing awesome lists of open source software.

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.

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
![Quizzo Web Component Snap](https://raw.githubusercontent.com/sharadcodes/quizzo_web_component/master/screenshots/snap.png)

## [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










```