├── .deepsource.toml ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ ├── doc.yml │ ├── feature_request.yml │ └── other.yml ├── SECURITY.md ├── pull_request_template.md └── workflows │ ├── codeql-analysis.yml │ ├── release.yml │ └── stale.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── css ├── game.css ├── highscores.css ├── index.css ├── rating.css ├── rules.css ├── suggestion.css └── topics.css ├── images ├── Festival.ico ├── Game.ico ├── General Knowledge.ico ├── Main.ico ├── Tech.ico ├── Youtube.ico └── arrow-down.png ├── index.html ├── js ├── QuizClass.js ├── christmas-songs.js ├── data │ ├── JaidenAnimations.js │ ├── Programminglanguage.js │ ├── TheOdd1sOut.js │ ├── browsers.js │ ├── christmas.js │ ├── computerparts.js │ ├── countries.js │ ├── disney.js │ ├── easter.js │ ├── football.js │ ├── fruit.js │ ├── game.js │ ├── general.js │ ├── index.js │ ├── kendall_quiz.js │ ├── minecraft.js │ ├── presidents.js │ ├── roblox.js │ ├── tech.js │ └── youtube.js ├── end.js ├── highscores.js ├── rules.js ├── songs.js └── topics.js ├── music ├── Fluffing-a-Duck.mp3 ├── apc.mp3 ├── beachvibes.mp3 ├── bliss.mp3 ├── christmas │ ├── AVeryMogulChristmas.mp3 │ ├── DeckTheHalls.mp3 │ ├── FelizNavidad.mp3 │ └── It'sThatTimeOfTheYear.mp3 ├── happyafricanvillage.mp3 ├── happyandjoyfulchildren.mp3 ├── newlands.mp3 ├── sotb.mp3 ├── tropicalfever.mp3 ├── tropicalsoul.mp3 └── ukulele.mp3 ├── package-lock.json ├── package.json ├── pages ├── browsers │ ├── game.html │ └── index.html ├── christmas │ ├── game.html │ └── index.html ├── computer_parts │ ├── game.html │ └── index.html ├── countries │ ├── game.html │ └── index.html ├── disney │ ├── game.html │ └── index.html ├── easter │ ├── game.html │ └── index.html ├── end.html ├── football │ ├── game.html │ └── index.html ├── fruit │ ├── game.html │ └── index.html ├── game.html ├── general_knowledge │ ├── game.html │ └── index.html ├── highscores.html ├── jaidenanimations │ ├── game.html │ └── index.html ├── kendall-quiz │ ├── game.html │ └── index.html ├── minecraft │ ├── game.html │ └── index.html ├── presidents │ ├── game.html │ └── index.html ├── programming_language │ ├── game.html │ └── index.html ├── rating.html ├── roblox │ ├── game.html │ └── index.html ├── rules.html ├── suggestion.html ├── tech │ ├── game.html │ └── index.html ├── theodd1sout │ ├── game.html │ └── index.html ├── topics.html └── youtube │ ├── game.html │ └── index.html └── sitemap.xml /.deepsource.toml: -------------------------------------------------------------------------------- 1 | version = 1 2 | 3 | [[analyzers]] 4 | name = "javascript" -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to Quiz 2 | 3 | We love your input! We want to make contributing to this project as easy and transparent as possible. 4 | 5 | ## Ways to Contribute 6 | 7 | - Bug Reports 8 | - Submitting fixes 9 | - Discussing the current state of the code 10 | - Feature Requests: Proposing new features 11 | - Become a maintainer 12 | 13 | ## How to Contribute 14 | 15 | ### Making Changes 16 | 17 | 1. Fork the repository. 18 | 2. Create a new branch (git checkout -b feature-branch). 19 | 3. Make your changes and ensure code quality (linting, tests). 20 | 3. Commit your changes (git commit -am 'Add new feature'). 21 | 3. Push to the branch (git push origin feature-branch). 22 | 3. Create a new Pull Request. 23 | 24 | ### How to Start the Project 25 | 26 | 1. After forking, clone the repo onto your local machine (git clone repo-name). 27 | 2. `index.html` is the starting point of the website. 28 | 3. The music, css, js and images are in their respective folders. 29 | 30 | ### Pull Requests (PRs) 31 | 32 | - Clearly describe your changes in the PR description. 33 | - Ensure the PR addresses an open issue (if applicable). 34 | - Maintain a clean commit history. 35 | 36 | ### Code Style 37 | 38 | - Follow the existing code style and conventions. 39 | - Document your code and changes wherever necessary. 40 | 41 | ### Issue Reporting 42 | 43 | - Report a bug by opening a new [issue](https://github.com/KendallDoesCoding/quiz/issues/new/choose). 44 | - When reporting bugs, provide detailed steps to reproduce. 45 | - Include relevant information such as OS, browser, or environment. 46 | 47 | ## Community Guidelines 48 | 49 | Be respectful and considerate towards others' contributions. 50 | Accept constructive criticism and feedback gracefully. 51 | Help fellow contributors and maintain a positive environment. 52 | 53 | ## Licensing 54 | 55 | By contributing, you agree that your contributions will be licensed under the project's [LICENSE](https://github.com/KendallDoesCoding/quiz/blob/main/LICENSE). 56 | 57 | ## Contact 58 | 59 | If you have any questions or need further assistance, feel free to contact us at . 60 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- 1 | name: 🐛 Bug 2 | description: Report an issue to help improve the project. 3 | labels: ['🛠 goal: fix'] 4 | body: 5 | - type: textarea 6 | id: description 7 | attributes: 8 | label: Description 9 | description: A brief description of the question or issue, also include what you tried and what didn't work 10 | validations: 11 | required: true 12 | - type: textarea 13 | id: screenshots 14 | attributes: 15 | label: Screenshots 16 | description: Please add screenshots if applicable 17 | validations: 18 | required: false 19 | - type: textarea 20 | id: extrainfo 21 | attributes: 22 | label: Additional information 23 | description: Is there anything else we should know about this bug? 24 | validations: 25 | required: false 26 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/doc.yml: -------------------------------------------------------------------------------- 1 | name: 📄 Documentation issue 2 | description: Found an issue in the documentation? You can use this one! 3 | title: '[DOCS] ' 4 | labels: ['📄 aspect: text'] 5 | body: 6 | - type: textarea 7 | id: description 8 | attributes: 9 | label: Description 10 | description: A brief description of the question or issue, also include what you tried and what didn't work 11 | validations: 12 | required: true 13 | - type: textarea 14 | id: screenshots 15 | attributes: 16 | label: Screenshots 17 | description: Please add screenshots if applicable 18 | validations: 19 | required: false 20 | - type: textarea 21 | id: extrainfo 22 | attributes: 23 | label: Additional information 24 | description: Is there anything else we should know about this issue? 25 | validations: 26 | required: false 27 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- 1 | name: 💡 General Feature Request 2 | description: Have a new idea/feature for quiz? Please suggest! 3 | title: '[FEATURE] ' 4 | labels: ['⭐ goal: addition'] 5 | body: 6 | - type: textarea 7 | id: description 8 | attributes: 9 | label: Description 10 | description: A brief description of the enhancement you propose, also include what you tried and what worked. 11 | validations: 12 | required: true 13 | - type: textarea 14 | id: screenshots 15 | attributes: 16 | label: Screenshots 17 | description: Please add screenshots if applicable 18 | validations: 19 | required: false 20 | - type: textarea 21 | id: extrainfo 22 | attributes: 23 | label: Additional information 24 | description: Is there anything else we should know about this idea? 25 | validations: 26 | required: false 27 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.yml: -------------------------------------------------------------------------------- 1 | name: Other 2 | description: Use this for any other issues. Please do NOT create blank issues 3 | title: '[OTHER]' 4 | labels: ['🚦 status: awaiting triage'] 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: '# Other issue' 9 | - type: textarea 10 | id: issuedescription 11 | attributes: 12 | label: What would you like to share? 13 | description: Provide a clear and concise explanation of your issue. 14 | validations: 15 | required: true 16 | - type: textarea 17 | id: extrainfo 18 | attributes: 19 | label: Additional information 20 | description: Is there anything else we should know about this issue? 21 | validations: 22 | required: false 23 | -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | ## Reporting a Vulnerability 4 | 5 | Email me at - privacy@kendalldoescoding.gq, copying kendall@kendalldoescoding.gq or fill in this contact form at https://kendalldoescoding.gq/contact to report a Security Issue 6 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | # Related Issue/Addition to code 2 | 3 | - Issue goes here 4 | 5 | ## Type of change 6 | 7 | Please delete options that are not relevant. 8 | 9 | - [ ] Bug fix (non-breaking change which fixes an issue) 10 | - [ ] New feature (non-breaking change which adds functionality) 11 | - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) 12 | - [ ] This change requires a documentation update 13 | 14 | # Proposed Changes 15 | 16 | - change 1 17 | - change 2 18 | 19 | # Additional Info 20 | 21 | - any additional info for context 22 | 23 | ## Checklist: 24 | 25 | - [ ] My code follows the style guidelines of this project and have read CONTRIBUTING.md 26 | - [ ] I have performed a self-review of my own code 27 | - [ ] I have commented my code, particularly in hard-to-understand areas 28 | - [ ] I have made corresponding changes to the documentation 29 | - [ ] My changes generate no new warnings 30 | - [ ] I have added tests that prove my fix is effective or that my feature works 31 | - [ ] New and existing unit tests pass locally with my changes 32 | - [ ] Any dependent changes have been merged and published in downstream modules 33 | - [ ] I have checked my code and corrected any misspellings 34 | 35 | # Screenshots 36 | 37 | | Original | Updated | 38 | | :----------------------: | :----------------------: | 39 | | \*\* original screenshot | ** updated screenshot ** | 40 | -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- 1 | # For most projects, this workflow file will not need changing; you simply need 2 | # to commit it to your repository. 3 | # 4 | # You may wish to alter this file to override the set of languages analyzed, 5 | # or to provide custom queries or build logic. 6 | # 7 | # ******** NOTE ******** 8 | # We have attempted to detect the languages in your repository. Please check 9 | # the `language` matrix defined below to confirm you have the correct set of 10 | # supported CodeQL languages. 11 | # 12 | name: "CodeQL" 13 | 14 | on: 15 | push: 16 | branches: [main] 17 | pull_request: 18 | # The branches below must be a subset of the branches above 19 | branches: [main] 20 | schedule: 21 | - cron: "37 4 * * 6" 22 | 23 | jobs: 24 | analyze: 25 | name: Analyze 26 | runs-on: ubuntu-latest 27 | permissions: 28 | actions: read 29 | contents: read 30 | security-events: write 31 | 32 | strategy: 33 | fail-fast: false 34 | matrix: 35 | language: ["javascript"] 36 | # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] 37 | # Learn more about CodeQL language support at https://git.io/codeql-language-support 38 | 39 | steps: 40 | - name: Checkout repository 41 | uses: actions/checkout@v2 42 | 43 | # Initializes the CodeQL tools for scanning. 44 | - name: Initialize CodeQL 45 | uses: github/codeql-action/init@v1 46 | with: 47 | languages: ${{ matrix.language }} 48 | # If you wish to specify custom queries, you can do so here or in a config file. 49 | # By default, queries listed here will override any specified in a config file. 50 | # Prefix the list here with "+" to use these queries and those in the config file. 51 | # queries: ./path/to/local/query, your-org/your-repo/queries@main 52 | 53 | # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). 54 | # If this step fails, then you should remove it and run the build manually (see below) 55 | - name: Autobuild 56 | uses: github/codeql-action/autobuild@v1 57 | 58 | # ℹ️ Command-line programs to run using the OS shell. 59 | # 📚 https://git.io/JvXDl 60 | 61 | # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines 62 | # and modify them (or add more) to build your code if your project 63 | # uses a compiled language 64 | 65 | #- run: | 66 | # make bootstrap 67 | # make release 68 | 69 | - name: Perform CodeQL Analysis 70 | uses: github/codeql-action/analyze@v1 71 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: Releases 2 | on: 3 | push: 4 | branches: 5 | - main 6 | 7 | jobs: 8 | changelog: 9 | runs-on: ubuntu-latest 10 | 11 | steps: 12 | - uses: actions/checkout@v2 13 | 14 | - name: conventional Changelog Action 15 | id: changelog 16 | uses: TriPSs/conventional-changelog-action@v3.7.1 17 | with: 18 | github-token: ${{ secrets.CHANGELOG_RELEASE }} 19 | version-file: "./package.json,./package-lock.json" 20 | 21 | - name: create release 22 | uses: actions/create-release@v1 23 | if: ${{ steps.changelog.outputs.skipped == 'false' }} 24 | env: 25 | GITHUB_TOKEN: ${{ secrets.CHANGELOG_RELEASE }} 26 | with: 27 | tag_name: ${{ steps.changelog.outputs.tag }} 28 | release_name: ${{ steps.changelog.outputs.tag }} 29 | body: ${{ steps.changelog.outputs.clean_changelog }} 30 | -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- 1 | - name: Close Stale Issues 2 | uses: actions/stale@v4.1.0 3 | with: 4 | # Token for the repository. Can be passed in using `{{ secrets.GITHUB_TOKEN }}`. 5 | repo-token: # optional, default is ${{ github.token }} 6 | # The message to post on the issue when tagging it. If none provided, will not mark issues stale. 7 | stale-issue-message: # optional 8 | # The message to post on the pull request when tagging it. If none provided, will not mark pull requests stale. 9 | stale-pr-message: # optional 10 | # The message to post on the issue when closing it. If none provided, will not comment when closing an issue. 11 | close-issue-message: # optional 12 | # The message to post on the pull request when closing it. If none provided, will not comment when closing a pull requests. 13 | close-pr-message: # optional 14 | # The number of days old an issue or a pull request can be before marking it stale. Set to -1 to never mark issues or pull requests as stale automatically. 15 | days-before-stale: # optional, default is 60 16 | # The number of days old an issue can be before marking it stale. Set to -1 to never mark issues as stale automatically. Override "days-before-stale" option regarding only the issues. 17 | days-before-issue-stale: # optional 18 | # The number of days old a pull request can be before marking it stale. Set to -1 to never mark pull requests as stale automatically. Override "days-before-stale" option regarding only the pull requests. 19 | days-before-pr-stale: # optional 20 | # The number of days to wait to close an issue or a pull request after it being marked stale. Set to -1 to never close stale issues or pull requests. 21 | days-before-close: # optional, default is 7 22 | # The number of days to wait to close an issue after it being marked stale. Set to -1 to never close stale issues. Override "days-before-close" option regarding only the issues. 23 | days-before-issue-close: # optional 24 | # The number of days to wait to close a pull request after it being marked stale. Set to -1 to never close stale pull requests. Override "days-before-close" option regarding only the pull requests. 25 | days-before-pr-close: # optional 26 | # The label to apply when an issue is stale. 27 | stale-issue-label: # optional, default is Stale 28 | # The label to apply when an issue is closed. 29 | close-issue-label: # optional 30 | # The labels that mean an issue is exempt from being marked stale. Separate multiple labels with commas (eg. "label1,label2"). 31 | exempt-issue-labels: # optional, default is 32 | # The label to apply when a pull request is stale. 33 | stale-pr-label: # optional, default is Stale 34 | # The label to apply when a pull request is closed. 35 | close-pr-label: # optional 36 | # The labels that mean a pull request is exempt from being marked as stale. Separate multiple labels with commas (eg. "label1,label2"). 37 | exempt-pr-labels: # optional, default is 38 | # The milestones that mean an issue or a pull request is exempt from being marked as stale. Separate multiple milestones with commas (eg. "milestone1,milestone2"). 39 | exempt-milestones: # optional, default is 40 | # The milestones that mean an issue is exempt from being marked as stale. Separate multiple milestones with commas (eg. "milestone1,milestone2"). Override "exempt-milestones" option regarding only the issues. 41 | exempt-issue-milestones: # optional, default is 42 | # The milestones that mean a pull request is exempt from being marked as stale. Separate multiple milestones with commas (eg. "milestone1,milestone2"). Override "exempt-milestones" option regarding only the pull requests. 43 | exempt-pr-milestones: # optional, default is 44 | # Exempt all issues and pull requests with milestones from being marked as stale. Default to false. 45 | exempt-all-milestones: # optional, default is false 46 | # Exempt all issues with milestones from being marked as stale. Override "exempt-all-milestones" option regarding only the issues. 47 | exempt-all-issue-milestones: # optional, default is 48 | # Exempt all pull requests with milestones from being marked as stale. Override "exempt-all-milestones" option regarding only the pull requests. 49 | exempt-all-pr-milestones: # optional, default is 50 | # Only issues or pull requests with all of these labels are checked if stale. Defaults to `` (disabled) and can be a comma-separated list of labels. 51 | only-labels: # optional, default is 52 | # Only issues or pull requests with at least one of these labels are checked if stale. Defaults to `` (disabled) and can be a comma-separated list of labels. 53 | any-of-labels: # optional, default is 54 | # Only issues with at least one of these labels are checked if stale. Defaults to `` (disabled) and can be a comma-separated list of labels. Override "any-of-labels" option regarding only the issues. 55 | any-of-issue-labels: # optional, default is 56 | # Only pull requests with at least one of these labels are checked if stale. Defaults to `` (disabled) and can be a comma-separated list of labels. Override "any-of-labels" option regarding only the pull requests. 57 | any-of-pr-labels: # optional, default is 58 | # Only issues with all of these labels are checked if stale. Defaults to `[]` (disabled) and can be a comma-separated list of labels. Override "only-labels" option regarding only the issues. 59 | only-issue-labels: # optional, default is 60 | # Only pull requests with all of these labels are checked if stale. Defaults to `[]` (disabled) and can be a comma-separated list of labels. Override "only-labels" option regarding only the pull requests. 61 | only-pr-labels: # optional, default is 62 | # The maximum number of operations per run, used to control rate limiting (GitHub API CRUD related). 63 | operations-per-run: # optional, default is 30 64 | # Remove stale labels from issues and pull requests when they are updated or commented on. 65 | remove-stale-when-updated: # optional, default is true 66 | # Remove stale labels from issues when they are updated or commented on. Override "remove-stale-when-updated" option regarding only the issues. 67 | remove-issue-stale-when-updated: # optional, default is 68 | # Remove stale labels from pull requests when they are updated or commented on. Override "remove-stale-when-updated" option regarding only the pull requests. 69 | remove-pr-stale-when-updated: # optional, default is 70 | # Run the processor in debug mode without actually performing any operations on live issues. 71 | debug-only: # optional, default is false 72 | # The order to get issues or pull requests. Defaults to false, which is descending. 73 | ascending: # optional, default is false 74 | # Delete the git branch after closing a stale pull request. 75 | delete-branch: # optional, default is false 76 | # The date used to skip the stale action on issue/pull request created before it (ISO 8601 or RFC 2822). 77 | start-date: # optional, default is 78 | # The assignees which exempt an issue or a pull request from being marked as stale. Separate multiple assignees with commas (eg. "user1,user2"). 79 | exempt-assignees: # optional, default is 80 | # The assignees which exempt an issue from being marked as stale. Separate multiple assignees with commas (eg. "user1,user2"). Override "exempt-assignees" option regarding only the issues. 81 | exempt-issue-assignees: # optional, default is 82 | # The assignees which exempt a pull request from being marked as stale. Separate multiple assignees with commas (eg. "user1,user2"). Override "exempt-assignees" option regarding only the pull requests. 83 | exempt-pr-assignees: # optional, default is 84 | # Exempt all issues and pull requests with assignees from being marked as stale. Default to false. 85 | exempt-all-assignees: # optional, default is false 86 | # Exempt all issues with assignees from being marked as stale. Override "exempt-all-assignees" option regarding only the issues. 87 | exempt-all-issue-assignees: # optional, default is 88 | # Exempt all pull requests with assignees from being marked as stale. Override "exempt-all-assignees" option regarding only the pull requests. 89 | exempt-all-pr-assignees: # optional, default is 90 | # Exempt draft pull requests from being marked as stale. Default to false. 91 | exempt-draft-pr: # optional, default is false 92 | # Display some statistics at the end regarding the stale workflow (only when the logs are enabled). 93 | enable-statistics: # optional, default is true 94 | # A comma delimited list of labels to add when a stale issue or pull request receives activity and has the stale-issue-label or stale-pr-label removed from it. 95 | labels-to-add-when-unstale: # optional, default is 96 | # A comma delimited list of labels to remove when a stale issue or pull request receives activity and has the stale-issue-label or stale-pr-label removed from it. 97 | labels-to-remove-when-unstale: # optional, default is 98 | # Any update (update/comment) can reset the stale idle time on the issues and pull requests. 99 | ignore-updates: # optional, default is false 100 | # Any update (update/comment) can reset the stale idle time on the issues. Override "ignore-updates" option regarding only the issues. 101 | ignore-issue-updates: # optional, default is 102 | # Any update (update/comment) can reset the stale idle time on the pull requests. Override "ignore-updates" option regarding only the pull requests. 103 | ignore-pr-updates: # optional, default is 104 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | pages/toadd.txt 2 | images/.DS_Store -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | kendall@kendalldoescoding.tech. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | This is free and unencumbered software released into the public domain. 2 | 3 | Anyone is free to copy, modify, publish, use, compile, sell, or 4 | distribute this software, either in source code form or as a compiled 5 | binary, for any purpose, commercial or non-commercial, and by any 6 | means. 7 | 8 | In jurisdictions that recognize copyright laws, the author or authors 9 | of this software dedicate any and all copyright interest in the 10 | software to the public domain. We make this dedication for the benefit 11 | of the public at large and to the detriment of our heirs and 12 | successors. We intend this dedication to be an overt act of 13 | relinquishment in perpetuity of all present and future rights to this 14 | software under copyright law. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 19 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | 24 | For more information, please refer to 25 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Quiz 2 | 3 | Thanks for viewing the GitHub repo for my quiz. 4 | I made this quiz, following a YouTube tutorial online by [Brian Designs](https://www.youtube.com/channel/UCsKsymTY_4BYR-wytLjex7A). You can explore this repo, although if you want to do the quiz yourself, I suggest you don't open any "Javascript" files within the directory /data, because the .JS file there has all the answers to the quiz. I may delete the games directory, and create a private repo where I have everything + games directory, but for now that will cause me double work, so its fine as it is :). 5 | 6 | Also, if your wondering, no this is not the same quiz as [Quiz in .Bat](https://github.com/KendallDoesCoding/Quiz-in-.bat), it's much more improved with more topics, etc and a more modern day design rather then just a command line game. 7 | 8 | I would like to give a big shoutout to [@Hacikoi-the-creator](https://github.com/Hachikoi-the-creator) who made a huge revamp to this project (in v8.0.0)[Pull Request #29](https://github.com/KendallDoesCoding/quiz/pull/29). 9 | 10 | ## Important 11 | 12 | Incase, music isn't playing for you, please do the following steps: 13 | 14 | - Head over to to Google Sound Settings - 15 | - Set it to "Sites can play sound" 16 | 17 | The issue should be fixed. Incase of any further issue, please file a [Bug Report](https://github.com/KendallDoesCoding/quiz/issues/new?assignees=&labels=%F0%9F%9B%A0+goal%3A+fix&template=bug.yml). 18 | 19 | # Links and Topics 20 | 21 | #### [Tutorial Video](https://www.youtube.com/watch?v=f4fB9Xg2JEY) 22 | 23 | #### [Quiz Question Suggestion Template](https://www.youtube.com/watch?v=KrGfq0vXEkc) 24 | 25 | #### [Quiz Website](https://quiz.kencodes.tech) 26 | 27 | #### [Quiz Topics](https://quiz.kencodes.tech/pages/topics) 28 | 29 |
30 | Check more Quiz types 31 | 32 | [Tech Quiz](https://quiz.kencodes.tech/pages/tech/) 33 | 34 | [Minecraft Quiz](https://quiz.kencodes.tech/pages/minecraft/) 35 | 36 | [Roblox Quiz](https://quiz.kencodes.tech/pages/roblox/) 37 | 38 | [Easter Quiz](https://quiz.kencodes.tech/pages/easter/) 39 | 40 | [Christmas Quiz](https://quiz.kencodes.tech/pages/christmas/) 41 | 42 | [Browsers Quiz](https://quiz.kencodes.tech/pages/browsers/) 43 | 44 | [Computer Parts Quiz](https://quiz.kencodes.tech/pages/computer_parts/) 45 | 46 | [Disney Quiz](https://quiz.kencodes.tech/pages/disney/) 47 | 48 | [Fruit Quiz](https://quiz.kencodes.tech/pages/fruit/) 49 | 50 | [Football Quiz](https://quiz.kencodes.tech/pages/football/) 51 | 52 | [Country Quiz](https://quiz.kencodes.tech/pages/countries/) 53 | 54 | [U.S Presidents Quiz](https://quiz.kencodes.tech/pages/presidents/) 55 | 56 | [YouTube Quiz](https://quiz.kencodes.tech/pages/youtube/) 57 | 58 | [Programming Language Quiz](https://quiz.kencodes.tech/pages/programming_language/) 59 | 60 | [Jaiden Animations Quiz](https://quiz.kencodes.tech/pages/jaidenanimations/) 61 | 62 | [TheOdd1sOut Quiz](https://quiz.kencodes.tech/pages/theodd1sout/) 63 | 64 | [How Well Do You Know Kendall Quiz](https://quiz.kencodes.tech/pages/kendall-quiz/) 65 | 66 |
67 | 68 | ## Quiz Length Breakdown 69 | 70 |
71 | 72 | ### Mini Quiz - _3 Questions_ 73 | 74 | - Browsers Quiz 75 | - How Well Do You Know Kendall Quiz 76 | 77 | ### Medium Quiz - _5 questions_ 78 | 79 | - Tech Quiz 80 | - Disney Quiz 81 | - Country Quiz 82 | - U.S Presidents Quiz 83 | - Programming Language Quiz 84 | 85 | ### Above Medium Quiz - _7 questions_ 86 | 87 | - Roblox Quiz 88 | 89 | ### Normal Quiz - _10 questions_ 90 | 91 | - Minecraft Quiz 92 | - Fruit Quiz 93 | - Football Quiz 94 | - YouTube Quiz 95 | - Jaiden Animations Quiz 96 | 97 | ### Above Normal Quiz - _13 questions_ 98 | 99 | - Easter Quiz 100 | - Computer Parts Quiz (14 questions) 101 | 102 | ### Mega Quiz - _15 questions_ 103 | 104 | - Main Quiz 105 | - Christmas Quiz 106 | - TheOdd1sOut Quiz 107 | 108 |
109 | 110 | # Contributing to this Project 111 | 112 | Please follow the guidelines [here](./CONTRIBUTING.md) to contribute. 113 | 114 | # Music 115 | 116 | The following songs are licensed under Creative Commons: By Attribution 3.0 License 117 | . 118 | Music promoted by 119 | 120 | - Fluffing a Duck by Kevin Macleod 121 | - Happy and Joyful Children 122 | - Bliss by Luke Bergs 123 | - Tropical Soul by Luke Bergs 124 | - New Lands by Alex-Productions 125 | - Beach Vibes by Luke Bergs 126 | - Ukulele by Benjamin Tissot 127 | - Deck The Halls by Kevin Macleod 128 | - It's That Time Of The Year by Pecan Pie 129 | 130 | Further, the following songs are used (copyright free, no license required): 131 | 132 | - Snake On The Beach by Nico Staf 133 | - A Parisian Cafe by Aaron Kenny 134 | - Tropical Fever by Luke Bergs & LiQWYD 135 | - Happy African Village by John Bartmann 136 | - Feliz Navidad by Dan Barracuda 137 | 138 | --- 139 | 140 | # Contributors 141 | 142 | Thanks to all our contributors for their active support and participation! 143 | 144 | 145 | 146 | 147 | # Sign off 148 | 149 | Thanks for your support, 150 | 151 | Kendall Does Coding, 152 | 153 | 154 | -------------------------------------------------------------------------------- /css/game.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: #fff; 3 | user-select: none; 4 | } 5 | 6 | .container h2 { 7 | color: #fff; 8 | } 9 | 10 | .choice-container { 11 | display: flex; 12 | width: 80%; 13 | margin: 0 auto 0.8rem auto; 14 | border-radius: 4px; 15 | background: rgb(18, 93, 255); 16 | font-size: 3rem; 17 | } 18 | 19 | .choice-container:hover { 20 | cursor: pointer; 21 | box-shadow: 0 0.4rem 1.4rem 0 rgba(6, 103, 247, 0.5); 22 | transform: scale(1.02); 23 | transform: transform 100ms; 24 | } 25 | 26 | .choice-prefix { 27 | padding: 2rem 2.5rem; 28 | color: white; 29 | } 30 | 31 | .choice-text { 32 | padding: 2rem; 33 | width: 100%; 34 | } 35 | 36 | .correct { 37 | background: linear-gradient( 38 | 32deg, 39 | rgba(11, 223, 36) 0%, 40 | rgb(41, 232, 111) 100% 41 | ); 42 | } 43 | 44 | .incorrect { 45 | background: linear-gradient( 46 | 32deg, 47 | rgba(230, 29, 29, 1) 0%, 48 | rgb(224, 11, 11, 1) 100% 49 | ); 50 | } 51 | 52 | /* Heads up Display */ 53 | #hud { 54 | padding: 1rem; 55 | display: flex; 56 | justify-content: space-between; 57 | } 58 | 59 | .hud-prefix { 60 | text-align: center; 61 | font-size: 2rem; 62 | } 63 | 64 | .hud-main-text { 65 | text-align: center; 66 | } 67 | 68 | #progressBar { 69 | width: 20rem; 70 | height: 3rem; 71 | border: 0.2rem solid rgb(11, 223, 36); 72 | margin-top: 2rem; 73 | border-radius: 50px; 74 | overflow: hidden; 75 | } 76 | 77 | #progressBarFull { 78 | height: 100%; 79 | background: rgb(11, 223, 36); 80 | width: 0%; 81 | } 82 | .green-score{ 83 | color: green; 84 | } 85 | .red-score{ 86 | color:red; 87 | } 88 | 89 | #addPoints{ 90 | display:none; 91 | position: relative; 92 | right:90px; 93 | color:green; 94 | font-size: 20px; 95 | top: -100px; 96 | animation: ripple-animation 0.6s linear; 97 | } 98 | #subPoints{ 99 | display:none; 100 | position: relative; 101 | right:90px; 102 | color:red; 103 | font-size: 20px; 104 | top: -100px; 105 | animation: ripple-animation 0.6s linear; 106 | } 107 | @keyframes ripple-animation { 108 | to { 109 | transform: scale(2); 110 | opacity: 0; 111 | } 112 | } -------------------------------------------------------------------------------- /css/highscores.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: #fff; 3 | user-select: none; 4 | } 5 | 6 | #highScoresList { 7 | list-style: none; 8 | margin-bottom: 4rem; 9 | } 10 | 11 | .high-score { 12 | font-size: 2.8rem; 13 | margin-bottom: 0.5rem; 14 | } 15 | -------------------------------------------------------------------------------- /css/index.css: -------------------------------------------------------------------------------- 1 | @import url("https://fonts.googleapis.com/css2?family=Nova+Square&family=Poppins:wght@300;400;600;700;800&display=swap"); 2 | 3 | :root { 4 | background-color: rgb(29, 26, 26); 5 | user-select: none; 6 | } 7 | 8 | body { 9 | min-height: 100vh; 10 | display: flex; 11 | flex-direction: column; 12 | justify-content: center; 13 | } 14 | 15 | * { 16 | box-sizing: border-box; 17 | margin: 0; 18 | padding: 0; 19 | font-size: 62.5%; 20 | font-family: "Nova Square", cursive; 21 | } 22 | 23 | h1 { 24 | font-size: 5.4rem; 25 | color: #fff; 26 | margin-bottom: 3rem; 27 | text-align: center; 28 | } 29 | 30 | h2 { 31 | font-size: 4.2rem; 32 | margin-bottom: 4rem; 33 | } 34 | 35 | .flex-column { 36 | display: flex; 37 | flex-direction: column; 38 | } 39 | .flex-row { 40 | display: flex; 41 | flex-direction: row; 42 | } 43 | 44 | .flex-center { 45 | justify-content: center; 46 | align-items: center; 47 | } 48 | 49 | .justify-center { 50 | justify-content: center; 51 | } 52 | 53 | .text-center { 54 | text-align: center; 55 | } 56 | 57 | .hidden { 58 | display: none; 59 | } 60 | 61 | .btn { 62 | font-size: 2.4rem; 63 | padding: 2rem 0; 64 | width: 30rem; 65 | text-align: center; 66 | margin-bottom: 1rem; 67 | text-decoration: none; 68 | color: rgb(28, 26, 26); 69 | background-image: linear-gradient( 70 | 109.6deg, 71 | rgba(45, 116, 213, 1) 11.2%, 72 | rgba(121, 137, 212, 1) 91.2% 73 | ); 74 | border: 4px; 75 | } 76 | 77 | .btn:hover { 78 | cursor: pointer; 79 | box-shadow: 0 0.4rem 1.4rem - rgba(8, 114, 244, 0.6); 80 | transition: transform 150ms; 81 | transform: scale(1.03); 82 | } 83 | 84 | .btn[disabled]:hover { 85 | cursor: not-allowed; 86 | box-shadow: none; 87 | transform: none; 88 | } 89 | 90 | #topics-btn { 91 | background-image: radial-gradient( 92 | circle 489px at 49.3% 46.6%, 93 | rgba(255, 214, 126, 1) 0%, 94 | rgba(253, 200, 0, 1) 100.2% 95 | ); 96 | } 97 | 98 | #highscore-btn { 99 | background-image: radial-gradient( 100 | circle 957px at 8.7% 50.5%, 101 | rgba(246, 191, 13, 1) 0%, 102 | rgba(249, 47, 47, 1) 90% 103 | ); 104 | } 105 | 106 | #highscore-btn:hover { 107 | box-shadow: -0.4rem 1.4rem - rgba(255, 255, 0, 0.5); 108 | } 109 | 110 | #rules-btn { 111 | background-image: linear-gradient( 112 | 180.5deg, 113 | rgba(46, 255, 171, 1) 12.3%, 114 | rgba(252, 251, 222, 0.46) 92% 115 | ); 116 | } 117 | 118 | #suggestion-btn { 119 | background-image: radial-gradient( 120 | circle farthest-corner at 10% 20%, 121 | rgba(14, 174, 87, 1) 0%, 122 | rgba(12, 116, 117, 1) 90% 123 | ); 124 | } 125 | 126 | #music-btn { 127 | background-image: linear-gradient( 128 | 83.2deg, 129 | rgba(150, 93, 233, 1) 10.8%, 130 | rgba(99, 88, 238, 1) 94.3% 131 | ); 132 | } 133 | 134 | #releases-btn { 135 | background-image: radial-gradient( 136 | circle 860px at 11.8% 33.5%, 137 | rgba(240, 30, 92, 1) 0%, 138 | rgba(244, 49, 74, 1) 30.5%, 139 | rgba(249, 75, 37, 1) 56.1%, 140 | rgba(250, 88, 19, 1) 75.6%, 141 | rgba(253, 102, 2, 1) 100.2% 142 | ); 143 | } 144 | 145 | #christmas-btn { 146 | background: linear-gradient( 147 | 90deg, 148 | rgba(255, 151, 32, 1) 255%, 149 | rgba(255, 137, 1, 1) 255% 150 | ); 151 | } 152 | 153 | .fa-crown { 154 | font-size: 2.5rem; 155 | /* margin-left: 1rem; */ 156 | } 157 | 158 | /* End Page CSS */ 159 | .end-form-container { 160 | width: 100%; 161 | display: flex; 162 | flex-direction: column; 163 | align-items: center; 164 | max-width: 30rem; 165 | } 166 | 167 | input { 168 | margin-bottom: 1rem; 169 | width: 20rem; 170 | padding: 1.5rem; 171 | font-size: 1.8rem; 172 | border: none; 173 | box-shadow: 0 0.1rem 1.4rem 0 rgba(86, 185, 235, 0.5); 174 | } 175 | 176 | input::placeholder { 177 | color: #aaa; 178 | } 179 | 180 | #username { 181 | margin-bottom: 3rem; 182 | width: 100%; 183 | outline: none; 184 | } 185 | 186 | #end-text { 187 | font-size: 2.4rem; 188 | color: #fff; 189 | text-align: center; 190 | } 191 | 192 | #saveScoreBtn { 193 | border: none; 194 | } 195 | 196 | .fa-home { 197 | margin-left: 1rem; 198 | font-size: 2rem; 199 | color: rgb(28, 26, 26); 200 | } 201 | 202 | .white-title { 203 | font-size: 3.6rem; 204 | color: white; 205 | text-align: center; 206 | } 207 | 208 | /* Topics page */ 209 | .intro p { 210 | color: #ee82ee; 211 | font-size: 2.3rem; 212 | text-align: center; 213 | padding-bottom: 2.4rem; 214 | cursor: pointer; 215 | } 216 | 217 | .back-btn { 218 | background-color: rgb(41, 41, 41); 219 | display: flex; 220 | align-items: center; 221 | justify-content: center; 222 | } 223 | 224 | .back-btn img { 225 | rotate: 90deg; 226 | } 227 | 228 | .back-btn p { 229 | padding: 13px; 230 | } 231 | 232 | .go-back { 233 | color: rgb(59, 196, 255) !important; 234 | } 235 | 236 | .button1 { 237 | background-color: #4CAF50; /* Green */ 238 | border: none; 239 | color: white; 240 | padding: 15px 32px; 241 | text-align: center; 242 | text-decoration: none; 243 | display: inline-block; 244 | font-size: 16px; 245 | } 246 | .button2 { 247 | background-color: red; 248 | border: none; 249 | color: white; 250 | padding: 15px 32px; 251 | text-align: center; 252 | text-decoration: none; 253 | display: inline-block; 254 | font-size: 16px; 255 | 256 | } 257 | -------------------------------------------------------------------------------- /css/rating.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: #f0f0f0; 3 | font-family: Arial, sans-serif; 4 | margin: 0; 5 | padding: 0; 6 | } 7 | 8 | .container { 9 | max-width: 600px; 10 | margin: 0 auto; 11 | padding: 20px; 12 | background-color: #fff; 13 | border-radius: 8px; 14 | box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 15 | } 16 | 17 | h1 { 18 | color: green; 19 | font-size: 24px; 20 | margin-bottom: 20px; 21 | } 22 | 23 | p { 24 | color: gold; 25 | font-size: 14px; 26 | line-height: 1.5; 27 | margin-bottom: 10px; 28 | } 29 | 30 | form { 31 | margin-top: 20px; 32 | } 33 | 34 | input, 35 | textarea { 36 | display: block; 37 | width: 100%; 38 | padding: 10px; 39 | margin-bottom: 10px; 40 | border: 1px solid #ccc; 41 | border-radius: 4px; 42 | font-size: 14px; 43 | } 44 | 45 | input[type="email"], 46 | input[type="number"], 47 | textarea { 48 | resize: none; 49 | } 50 | 51 | button { 52 | background-color: green; 53 | color: #fff; 54 | padding: 10px 20px; 55 | border: none; 56 | } 57 | -------------------------------------------------------------------------------- /css/rules.css: -------------------------------------------------------------------------------- 1 | body { 2 | width: 80%; 3 | margin: 0 auto; 4 | user-select: none; 5 | } 6 | 7 | h1 { 8 | color: red; 9 | } 10 | 11 | p { 12 | color: #ef744b; 13 | } 14 | 15 | h3 { 16 | color: violet; 17 | font-size: 3rem; 18 | } 19 | 20 | h2 { 21 | color: green; 22 | } 23 | 24 | footer { 25 | display: flex; 26 | flex-wrap: wrap; 27 | justify-content: center; 28 | margin-top: 23px; 29 | } 30 | -------------------------------------------------------------------------------- /css/suggestion.css: -------------------------------------------------------------------------------- 1 | body { 2 | width: 100%; 3 | height: 100%; 4 | min-width:100%; 5 | min-height: 100%; 6 | } -------------------------------------------------------------------------------- /css/topics.css: -------------------------------------------------------------------------------- 1 | body { 2 | user-select: none; 3 | } 4 | 5 | .hide { 6 | display: none; 7 | /* width: 0; */ 8 | } 9 | 10 | #home { 11 | width: 300px; 12 | margin: 0 auto; 13 | } 14 | 15 | .show { 16 | display: flex; 17 | flex-wrap: wrap; 18 | gap: 7px; 19 | } 20 | 21 | /* need to overite width from .btn in css/index.css */ 22 | .show > a { 23 | width: 100%; 24 | position: relative; 25 | left: 20px; 26 | } 27 | 28 | /* GRADIENTS */ 29 | /* technology */ 30 | #technology { 31 | background-image: linear-gradient(90deg, #fcff9e 0%, #c67700 100%); 32 | } 33 | 34 | #tech-btn { 35 | background-image: linear-gradient( 36 | 43deg, 37 | #4158d0 0%, 38 | #c850c0 46%, 39 | #ffcc70 100% 40 | ); 41 | } 42 | 43 | #browsers-btn { 44 | background-image: linear-gradient( 45 | 109.6deg, 46 | rgba(61, 245, 167, 1) 11.2%, 47 | rgba(9, 111, 224, 1) 91.1% 48 | ); 49 | } 50 | 51 | #Computer-btn{ 52 | 53 | background-image: linear-gradient( 54 | 90deg, 55 | rgba(214,224,35,1) 0%, 56 | rgba(152,194,30,1) 29%, 57 | rgba(255,89,0,1) 100%); 58 | } 59 | 60 | /* Games */ 61 | #games { 62 | background-image: linear-gradient(135deg, #f05f57 10%, #360940 100%); 63 | } 64 | 65 | #minecraft-btn { 66 | background-image: linear-gradient(90deg, #00dbde 0%, #fc00ff 100%); 67 | } 68 | 69 | #roblox-btn { 70 | background-image: radial-gradient( 71 | circle, 72 | rgba(63, 94, 251, 1) 0%, 73 | rgba(101, 102, 104, 1) 100% 74 | ); 75 | } 76 | 77 | #football-btn { 78 | background-image: linear-gradient( 79 | 90deg, 80 | rgba(131, 58, 180, 1) 0%, 81 | rgba(236, 103, 103, 1) 50%, 82 | rgba(252, 176, 69, 1) 100% 83 | ); 84 | } 85 | 86 | /* Festivals */ 87 | #festivals { 88 | background-image: radial-gradient( 89 | circle farthest-corner at 10% 20%, 90 | rgba(14, 174, 87, 1) 0%, 91 | rgba(12, 116, 117, 1) 90% 92 | ); 93 | } 94 | 95 | #easter-btn { 96 | background-image: linear-gradient(90deg, #fad961 0%, #f76b1c 100%); 97 | } 98 | 99 | #christmas-btn { 100 | background-image: linear-gradient( 101 | 0deg, 102 | rgba(34, 193, 195, 1) 0%, 103 | rgba(253, 187, 45, 1) 100% 104 | ); 105 | } 106 | 107 | /* General knowledge */ 108 | #general { 109 | background-image: radial-gradient( 110 | circle farthest-corner at 10% 20%, 111 | rgba(255, 94, 247, 1) 17.8%, 112 | rgba(2, 245, 255, 1) 100.2% 113 | ); 114 | } 115 | 116 | #country-btn { 117 | background-image: radial-gradient( 118 | circle farthest-corner at 10% 20%, 119 | rgba(255, 94, 247, 1) 17.8%, 120 | rgba(2, 245, 255, 1) 100.2% 121 | ); 122 | } 123 | 124 | #presidents-btn { 125 | background-image: linear-gradient(90deg, #00c9ff 0%, #92fe9d 100%); 126 | } 127 | 128 | /* YouTube */ 129 | #youtube{ 130 | background-image: linear-gradient(90deg, #FF0000 0%, #FF4500 100%); 131 | } 132 | 133 | #youtube-btn { 134 | background-image: linear-gradient(90deg, #4285F4 0%, #00BFFF 100%); 135 | } 136 | 137 | /* Others */ 138 | #others { 139 | background-image: linear-gradient(90deg, #efd5ff 0%, #515ada 100%); 140 | } 141 | 142 | #disney-btn { 143 | background-image: linear-gradient(90deg, #efd5ff 0%, #515ada 100%); 144 | } 145 | 146 | #fruit-btn { 147 | background-image: radial-gradient( 148 | circle, 149 | rgba(238, 174, 202, 1) 0%, 150 | rgba(148, 187, 233, 1) 100% 151 | ); 152 | } 153 | 154 | #hwdyk-btn { 155 | background-image: radial-gradient( 156 | circle, 157 | rgba(35, 218, 80, 1) 0%, 158 | rgba(252, 0, 209, 1) 100% 159 | ); 160 | } 161 | 162 | #jaidenanimations-btn { 163 | background-color: #4158D0; 164 | background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%); 165 | } 166 | -------------------------------------------------------------------------------- /images/Festival.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KendallDoesCoding/quiz/adbe094314dbba339b495fde5d723a85c9ba7b57/images/Festival.ico -------------------------------------------------------------------------------- /images/Game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KendallDoesCoding/quiz/adbe094314dbba339b495fde5d723a85c9ba7b57/images/Game.ico -------------------------------------------------------------------------------- /images/General Knowledge.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KendallDoesCoding/quiz/adbe094314dbba339b495fde5d723a85c9ba7b57/images/General Knowledge.ico -------------------------------------------------------------------------------- /images/Main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KendallDoesCoding/quiz/adbe094314dbba339b495fde5d723a85c9ba7b57/images/Main.ico -------------------------------------------------------------------------------- /images/Tech.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KendallDoesCoding/quiz/adbe094314dbba339b495fde5d723a85c9ba7b57/images/Tech.ico -------------------------------------------------------------------------------- /images/Youtube.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KendallDoesCoding/quiz/adbe094314dbba339b495fde5d723a85c9ba7b57/images/Youtube.ico -------------------------------------------------------------------------------- /images/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KendallDoesCoding/quiz/adbe094314dbba339b495fde5d723a85c9ba7b57/images/arrow-down.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Quiz Game - Home Page 10 | 11 | 12 | 14 | 15 | 16 | 17 | 18 | 27 | 28 | 43 | 44 | 45 | 46 | 47 |
48 | 49 | 54 | 55 | 57 | 58 | 59 |

Are you Ready?

60 |
61 | Play 62 | 63 | Topics 64 | 65 | 66 | High Scores 67 | 68 | Rules & Info 69 | 70 | Question Suggestion 72 | 73 | Releases & Updates 75 | 76 |
77 | 78 | 79 | -------------------------------------------------------------------------------- /js/christmas-songs.js: -------------------------------------------------------------------------------- 1 | var songs = [ 2 | "/music/christmas/AVeryMogulChristmas.mp3", 3 | "/music/christmas/FelizNavidad.mp3", 4 | "/music/christmas/DeckTheHalls.mp3", 5 | "/music/christmas/It'sThatTimeOfTheYear.mp3", 6 | ]; 7 | 8 | var audioElement = document.getElementById('my_audio'); 9 | var musicOnButton = document.getElementById('musicOnButton'); 10 | 11 | function playMusic() { 12 | var randomIndex = Math.floor(Math.random() * songs.length); 13 | var audioSource = document.getElementById('audio_source'); 14 | audioSource.src = songs[randomIndex]; 15 | audioElement.load(); 16 | 17 | audioElement.addEventListener('canplaythrough', function() { 18 | audioElement.play().catch(function(error) { 19 | console.log('Error playing audio:', error); 20 | pauseMusic(); 21 | }); 22 | musicOnButton.style.display = 'none'; 23 | }, { once: true }); 24 | 25 | audioElement.addEventListener('pause', function() { 26 | musicOnButton.style.display = 'block'; 27 | }); 28 | } 29 | 30 | function pauseMusic() { 31 | audioElement.pause(); 32 | musicOnButton.style.display = 'block'; 33 | } 34 | 35 | function toggleMusic() { 36 | if (audioElement.paused) { 37 | playMusic(); 38 | } else { 39 | pauseMusic(); 40 | } 41 | } 42 | 43 | // Play music on page load 44 | window.addEventListener('load', function() { 45 | playMusic(); 46 | }); -------------------------------------------------------------------------------- /js/data/JaidenAnimations.js: -------------------------------------------------------------------------------- 1 | export default [ 2 | { 3 | question: "What is Jaiden Animations's surname?", 4 | choice1: "Carter", 5 | choice2: "Frank", 6 | choice3: "Rallison", 7 | choice4: "Dittfach", 8 | answer: 4, 9 | }, 10 | { 11 | question: "Where was Jaiden Animations born?", 12 | choice1: "Arizona, USA", 13 | choice2: "California, USA", 14 | choice3: "New York, USA", 15 | choice4: "Texas, USA", 16 | answer: 1, 17 | }, 18 | { 19 | question: "When did Jaiden Animations create her YouTube channel?", 20 | choice1: "5th May 2014", 21 | choice2: "14th August 2016", 22 | choice3: "17th Feburary 2014", 23 | choice4: "30th August 2014", 24 | answer: 3, 25 | }, 26 | { 27 | question: "What is Jaiden Animations song called?", 28 | choice1: "Life is Fun", 29 | choice2: "Empty", 30 | choice3: "Passionate Sleep", 31 | choice4: "Life is Empty", 32 | answer: 2, 33 | }, 34 | { 35 | question: "Who did Jaiden Animations collaborate with to make her song?", 36 | choice1: "Boyinaband", 37 | choice2: "RoomieOfficial", 38 | choice3: "TwoSetViolin", 39 | choice4: "Davie504", 40 | answer: 1, 41 | }, 42 | { 43 | question: "How many songs has Jaiden Animations made?", 44 | choice1: "3", 45 | choice2: "1", 46 | choice3: "5", 47 | choice4: "2", 48 | answer: 2, 49 | }, 50 | { 51 | question: "Jaiden Animations started making Animations for which Famous YouTuber's channel?", 52 | choice1: "QTCindrella", 53 | choice2: "Ludwig", 54 | choice3: "iHasCupquake", 55 | choice4: "Dream", 56 | answer: 3, 57 | }, 58 | { 59 | question: "Which year was Jaiden Animations born?", 60 | choice1: "1997", 61 | choice2: "1999", 62 | choice3: "1995", 63 | choice4: "2005", 64 | answer: 1, 65 | }, 66 | { 67 | question: "What is Jaiden Animations's favourite colour?", 68 | choice1: "Blue", 69 | choice2: "Green", 70 | choice3: "Red", 71 | choice4: "Purple", 72 | answer: 4, 73 | }, 74 | { 75 | question: "What colour does Jaiden Animations hate?", 76 | choice1: "Red", 77 | choice2: "Green", 78 | choice3: "Black", 79 | choice4: "Orange", 80 | answer: 2, 81 | }, 82 | ]; 83 | -------------------------------------------------------------------------------- /js/data/Programminglanguage.js: -------------------------------------------------------------------------------- 1 | export default [ 2 | { 3 | question: "What is Python?", 4 | choice1: " A high-level programming language", 5 | choice2: "A low-level programming language", 6 | choice3: "A markup language", 7 | choice4: "An operating system", 8 | answer: 1, 9 | }, 10 | { 11 | question: "What is the purpose of the \"if\" statement in Python?", 12 | choice1: "To define a loop", 13 | choice2: "To define a function", 14 | choice3: "To define a conditional statement", 15 | choice4: " To define a class", 16 | answer: 3, 17 | }, 18 | { 19 | question: 20 | "Which of the following is NOT a Python data type?", 21 | choice1: "Integer", 22 | choice2: "String", 23 | choice3: "List", 24 | choice4: "Double", 25 | answer: 4, 26 | }, 27 | { 28 | question: 29 | "What is the difference between a tuple and a list in Python?", 30 | choice1: "A tuple is immutable, while a list is mutable.", 31 | choice2: "A list is immutable, while a tuple is mutable.", 32 | choice3: "Both a tuple and a list are immutable.", 33 | choice4: "Both a tuple and a list are mutable", 34 | answer: 1, 35 | }, 36 | { 37 | question: 38 | "What does the \"range\" function in Python do?", 39 | choice1: "Generates a list of numbers", 40 | choice2: "Defines a loop", 41 | choice3: "Returns the length of a list", 42 | choice4: "Removes an item from a list", 43 | answer: 1, 44 | }, 45 | ]; 46 | -------------------------------------------------------------------------------- /js/data/TheOdd1sOut.js: -------------------------------------------------------------------------------- 1 | export default [ 2 | { 3 | question: "What is TheOdd1sOut's real name?", 4 | choice1: "James", 5 | choice2: "Steve", 6 | choice3: "Adam", 7 | choice4: "Pete", 8 | answer: 1, 9 | }, 10 | { 11 | question: "What is TheOdd1sOut's surname?", 12 | choice1: "Carter", 13 | choice2: "Frank", 14 | choice3: "Rallison", 15 | choice4: "Smith", 16 | answer: 3, 17 | }, 18 | { 19 | question: "How many books has TheOdd1sOut written/illustrated? (as of May 2023)", 20 | choice1: "10", 21 | choice2: "4", 22 | choice3: "2", 23 | choice4: "5", 24 | answer: 2, 25 | }, 26 | { 27 | question: "When did TheOdd1sOut create his YouTube channel?", 28 | choice1: "5th May 2014", 29 | choice2: "14th August 2016", 30 | choice3: "27th Feburary 2013", 31 | choice4: "30th August 2014", 32 | answer: 4, 33 | }, 34 | { 35 | question: "What is TheOdd1sOut show called?", 36 | choice1: "Pickles", 37 | choice2: "OddBalls", 38 | choice3: "TheOddShow", 39 | choice4: "OddBods", 40 | answer: 2, 41 | }, 42 | { 43 | question: "Which school did TheOdd1sOut go to?", 44 | choice1: "Perry High School", 45 | choice2: "Morganville High School", 46 | choice3: "Adamsfield High School", 47 | choice4: "Chandler High School", 48 | answer: 1, 49 | }, 50 | { 51 | question: "How many siblings does TheOdd1sOut have?", 52 | choice1: "None", 53 | choice2: "2", 54 | choice3: "4", 55 | choice4: "3", 56 | answer: 3, 57 | }, 58 | { 59 | question: "Where was TheOdd1sOut born?", 60 | choice1: "Gilbert, Arizona, USA", 61 | choice2: "Chandler, Arizona, USA", 62 | choice3: "Silicon Valley, California, USA", 63 | choice4: "Las Vegas, Nevada, USA", 64 | answer: 2, 65 | }, 66 | { 67 | question: "TheOdd1sOut is ____ handed?", 68 | choice1: "Left", 69 | choice2: "Right", 70 | answer: 1, 71 | }, 72 | { 73 | question: "How many songs has TheOdd1sOut made?", 74 | choice1: "1", 75 | choice2: "3", 76 | choice3: "5", 77 | choice4: "2", 78 | answer: 4, 79 | }, 80 | { 81 | question: "Who did TheOdd1sOut collaborate with to make the song 'Life is Fun'?", 82 | choice1: "RoomieOfficial", 83 | choice2: "TwoSetViolin", 84 | choice3: "Boyinaband", 85 | choice4: "Dream", 86 | answer: 3, 87 | }, 88 | { 89 | question: "Where did TheOdd1sOut use to work?", 90 | choice1: "Subway", 91 | choice2: "McDonalds", 92 | choice3: "Wendys", 93 | choice4: "Taco Bell", 94 | answer: 1, 95 | }, 96 | { 97 | question: "Which year was TheOdd1sOut born?", 98 | choice1: "1993", 99 | choice2: "1996", 100 | choice3: "1985", 101 | choice4: "2005", 102 | answer: 2, 103 | }, 104 | { 105 | question: "What is TheOdd1sOut's favourite colour?", 106 | choice1: "Blue", 107 | choice2: "Green", 108 | choice3: "Red", 109 | choice4: "Magenta", 110 | answer: 4, 111 | }, 112 | { 113 | question: "What is TheOdd1sOut's birthday?", 114 | choice1: "2nd May", 115 | choice2: "14th August", 116 | choice3: "14th May", 117 | choice4: "27th Feburary", 118 | answer: 3, 119 | }, 120 | ]; 121 | -------------------------------------------------------------------------------- /js/data/browsers.js: -------------------------------------------------------------------------------- 1 | export default [ 2 | { 3 | question: "Which year was the first web browser created in?", 4 | choice1: "1985", 5 | choice2: "1993", 6 | choice3: "1990", 7 | choice4: "1991", 8 | answer: 3, 9 | }, 10 | { 11 | question: "Netscape Browser Version 8.0 was released in?", 12 | choice1: "May 2005", 13 | choice2: "April 2005", 14 | choice3: "July 2004", 15 | choice4: "December 2007", 16 | answer: 1, 17 | }, 18 | { 19 | question: "What was the first web browser?", 20 | choice1: "Netscape", 21 | choice2: "Mozilla Firefox", 22 | choice3: "IE (Internet Explorer)", 23 | choice4: "World Wide Web", 24 | answer: 4, 25 | }, 26 | ]; 27 | -------------------------------------------------------------------------------- /js/data/christmas.js: -------------------------------------------------------------------------------- 1 | export default [ 2 | { 3 | question: "Which popular Christmas beverage is also called “milk punch?", 4 | choice1: "Eggnog", 5 | choice2: "Hot Toddy", 6 | choice3: "Cranberry-Apple Cider Punch", 7 | choice4: "Wassail", 8 | answer: 1, 9 | }, 10 | { 11 | question: 12 | "In Home Alone, where are the McCallisters going on vacation when they leave Kevin behind?", 13 | choice1: "United States of America", 14 | choice2: "Japan", 15 | choice3: "Dubai", 16 | choice4: "Paris", 17 | answer: 4, 18 | }, 19 | { 20 | question: "Which country did eggnog come from?", 21 | choice1: "India", 22 | choice2: "England", 23 | choice3: "United States of America", 24 | choice4: "France", 25 | answer: 2, 26 | }, 27 | { 28 | question: "How do you say “Merry Christmas” in Spanish?", 29 | choice1: "Feliz Navidad", 30 | choice2: "Felices Fiestas", 31 | choice3: "Que pases lindo esta navidad", 32 | choice4: "Mis mejores deseos para esta navidad", 33 | answer: 1, 34 | }, 35 | { 36 | question: 37 | "Which country started the tradition of putting up a Christmas tree?", 38 | choice1: "Belgium", 39 | choice2: "France", 40 | choice3: "Germany", 41 | choice4: "Brazil", 42 | answer: 3, 43 | }, 44 | { 45 | question: 46 | "What popular Christmas song was actually written for Thanksgiving?", 47 | choice1: "Silent Night by Franz Xaver Gruber", 48 | choice2: "Jingle Bells by James Lord Pierpont", 49 | choice3: "We Wish You A Merry Christmas by Arthur Sydney Warrell", 50 | choice4: 51 | "The Little Drummer Boy by Harry Simeone and Katherine Kennicott Davis", 52 | answer: 2, 53 | }, 54 | { 55 | question: 56 | "Name the first US president who decorated the Christmas tree at the White House", 57 | choice1: "James Madison", 58 | choice2: "Franklin Pierce", 59 | choice3: "Rutherford B Hayes", 60 | choice4: "John Adams", 61 | answer: 2, 62 | }, 63 | { 64 | question: "What does the red color of Christmas symbolize?", 65 | choice1: "Blood of Jesus", 66 | choice2: "Santa Claus", 67 | choice3: "Holly Berries", 68 | choice4: "Strawberries", 69 | answer: 1, 70 | }, 71 | { 72 | question: 73 | "Which country sends a huge Christmas tree to London, every year?", 74 | choice1: "Denmark", 75 | choice2: "Spain", 76 | choice3: "Norway", 77 | choice4: "Netherlands", 78 | answer: 3, 79 | }, 80 | { 81 | question: "When is Christmas celebrated in Russia?", 82 | choice1: "15th December", 83 | choice2: "15th Feburary", 84 | choice3: "25th December", 85 | choice4: "7th January", 86 | answer: 4, 87 | }, 88 | { 89 | question: "In which year was Christmas banned in Boston?", 90 | choice1: "1630", 91 | choice2: "1659", 92 | choice3: "1840", 93 | choice4: "1910", 94 | answer: 2, 95 | }, 96 | { 97 | question: 98 | "Which country celebrates its Independence day on Christmas Eve every year?", 99 | choice1: "Libya", 100 | choice2: "Syria", 101 | choice3: "Lebanon", 102 | choice4: "Algeria", 103 | answer: 1, 104 | }, 105 | { 106 | question: "How many packages are shipped every year?", 107 | choice1: "50 million", 108 | choice2: "210 million", 109 | choice3: "625 million", 110 | choice4: "850 million", 111 | answer: 4, 112 | }, 113 | { 114 | question: "Which country did St. Nicholas belong to?", 115 | choice1: "Spain", 116 | choice2: "Italy", 117 | choice3: "Greece", 118 | choice4: "Turkey", 119 | answer: 3, 120 | }, 121 | { 122 | question: "Which Country celebrates Christmas on 24 December?", 123 | choice1: "Portugal", 124 | choice2: "Spain", 125 | choice3: "United Kingdom", 126 | choice4: "Australia", 127 | answer: 1, 128 | }, 129 | ]; 130 | -------------------------------------------------------------------------------- /js/data/computerparts.js: -------------------------------------------------------------------------------- 1 | export default [ 2 | { 3 | question: "RAM stands for?", 4 | choice1: "Read Access Memory", 5 | choice2: "Randomly Access Memory", 6 | choice3: "Random Access Memory", 7 | choice4: "Retains Access Memory", 8 | answer: 3, 9 | }, 10 | { 11 | question: 12 | "Which of the following is not a Characteristic of Static RAM?", 13 | choice1: "Long life", 14 | choice2: "Faster", 15 | choice3: "Large size", 16 | choice4: "Low power consumption", 17 | answer: 4, 18 | }, 19 | { 20 | question: "Which is an extremely fast computer, which can execute hundreds of millions of instructions per second?", 21 | choice1: "Workstation", 22 | choice2: "Mini Computer", 23 | choice3: "Main Frame", 24 | choice4: "Supercomputer", 25 | answer: 4, 26 | }, 27 | { 28 | question: "PDAs are also called?", 29 | choice1: "PCs", 30 | choice2: "Laptops", 31 | choice3: "Tablets", 32 | choice4: "Handheld", 33 | answer: 4, 34 | }, 35 | { 36 | question: 37 | "Keyboard also contains some special purpose keys such as Enter, Shift, Caps Lock, Num Lock, Space bar, Tab, and Print Screen is known as?", 38 | choice1: "Control keys", 39 | choice2: "Function Keys", 40 | choice3: "Special Purpose Keys", 41 | choice4: "None of the above", 42 | answer: 3, 43 | }, 44 | { 45 | question: 46 | " _____________ is an input device that is mostly used in notebook or laptop computer.", 47 | choice1: "Light Pen", 48 | choice2: "Track Ball", 49 | choice3: "Scanner", 50 | choice4: "Digitizer", 51 | answer: 2, 52 | }, 53 | { 54 | question: "Name the device that converts text information into spoken sentences?", 55 | choice1: "Speech Sensors", 56 | choice2: "Speech Synthesizers", 57 | choice3: "Compact convertors", 58 | choice4: "Voice systems", 59 | answer: 2, 60 | }, 61 | { 62 | question: 63 | "Which of the following Advantages of Dot Matrix Printer?", 64 | choice1: "Inexpensive", 65 | choice2: "Widely Used", 66 | choice3: "Other language characters can be printed", 67 | choice4: "All of the above", 68 | answer: 4, 69 | }, 70 | { 71 | question: "The memory is divided into large number of small parts called ?", 72 | choice1: "location", 73 | choice2: "cells", 74 | choice3: "rowsr", 75 | choice4: "columns", 76 | answer: 2, 77 | }, 78 | { 79 | question: "Which of the following used to store data and instructions?", 80 | choice1: "CPU", 81 | choice2: "Mouse", 82 | choice3: "Memory", 83 | choice4: "Ports", 84 | answer: 3, 85 | }, 86 | { 87 | question: 88 | "NIC stands for?", 89 | choice1: "Network Internal Card", 90 | choice2: "Network Interconnect Card", 91 | choice3: "Network Interface Card", 92 | choice4: "Network Interface Component", 93 | answer: 3, 94 | }, 95 | { 96 | question: "Debugging is the process of fixing a ______ in the software", 97 | choice1: "bug", 98 | choice2: "warning", 99 | choice3: "exception", 100 | choice4: "function", 101 | answer: 1, 102 | }, 103 | { 104 | question: "Print debugging also called?", 105 | choice1: "Remote debugging", 106 | choice2: "Post-mortem debugging", 107 | choice3: "Tracing", 108 | choice4: "Static analysis", 109 | answer: 3, 110 | }, 111 | { 112 | question: "The terms bug and debugging are popularly attributed to Admiral Grace Hopper in the?", 113 | choice1: "1940", 114 | choice2: "1960", 115 | choice3: "1980", 116 | choice4: "995", 117 | answer: 1, 118 | }, 119 | ]; 120 | -------------------------------------------------------------------------------- /js/data/countries.js: -------------------------------------------------------------------------------- 1 | export default [ 2 | { 3 | question: "In which country are the world's 10 coldest cities located?", 4 | choice1: "Sweden", 5 | choice2: "Canada", 6 | choice3: "Australia", 7 | choice4: "Russia", 8 | answer: 4, 9 | }, 10 | { 11 | question: "Which country has three capital cities?", 12 | choice1: "South Africa", 13 | choice2: "Nigeria", 14 | choice3: "Chilie", 15 | choice4: "China", 16 | answer: 1, 17 | }, 18 | { 19 | question: 20 | "Thanks to its overseas territories, which country technically spans 12 time zones?", 21 | choice1: "Russia", 22 | choice2: "United States", 23 | choice3: "Franch", 24 | choice4: "New Zealand", 25 | answer: 3, 26 | }, 27 | { 28 | question: "Which continent is home to the most countries?", 29 | choice1: "Europe", 30 | choice2: "Africa", 31 | choice3: "Asia", 32 | choice4: "South America", 33 | answer: 2, 34 | }, 35 | { 36 | question: 37 | "Which of these is NOT one of the 13 countries crossed by the Equator?", 38 | choice1: "Ecuador", 39 | choice2: "Indonesia", 40 | choice3: "Kenya", 41 | choice4: "Egypt", 42 | answer: 4, 43 | }, 44 | ]; 45 | -------------------------------------------------------------------------------- /js/data/disney.js: -------------------------------------------------------------------------------- 1 | export default [ 2 | { 3 | question: "What year did Disneyland open?", 4 | choice1: "1940", 5 | choice2: "1999", 6 | choice3: "2000", 7 | choice4: "1955", 8 | answer: 4, 9 | }, 10 | { 11 | question: "What is the name of the toy store in Toy Story 2?", 12 | choice1: "Trinkets And Toys", 13 | choice2: "Al`s Toy Barn", 14 | choice3: "Pete`s Toy Barn", 15 | choice4: "Toy Parade", 16 | answer: 2, 17 | }, 18 | { 19 | question: "What is the name of Andy’s neighbor in Toy Story?", 20 | choice1: "Sid", 21 | choice2: "Slinky Dog", 22 | choice3: "Rex", 23 | choice4: "Mr. Potato Head", 24 | answer: 1, 25 | }, 26 | { 27 | question: "Who is the fashion designer in The Incredibles?", 28 | choice1: "Tony Rydinger", 29 | choice2: "Edna Mode", 30 | choice3: "Rick Dicker", 31 | choice4: "Honey", 32 | answer: 2, 33 | }, 34 | { 35 | question: "What was the first Pixar movie?", 36 | choice1: "Monsters, Inc", 37 | choice2: "A Bugs Life", 38 | choice3: "Toy Story", 39 | choice4: "Cars", 40 | answer: 3, 41 | }, 42 | ]; 43 | -------------------------------------------------------------------------------- /js/data/easter.js: -------------------------------------------------------------------------------- 1 | export default [ 2 | { 3 | question: "The first Easter eggs were dyed what color?", 4 | choice1: "Blue", 5 | choice2: "Green", 6 | choice3: "Purple", 7 | choice4: "Red", 8 | answer: 4, 9 | }, 10 | { 11 | question: "Where is the most popular Easter parade held each year?", 12 | choice1: "New York", 13 | choice2: "Utah", 14 | choice3: "Canada", 15 | choice4: "Texas", 16 | answer: 1, 17 | }, 18 | { 19 | question: 20 | "What was the circumference of the world’s largest chocolate Easter egg?", 21 | choice1: "20 feet, 1.20 inches", 22 | choice2: "100 feet, 1.90 inches", 23 | choice3: "64 feet, 3.65 inches", 24 | choice4: "10 feet, 5 inches", 25 | answer: 3, 26 | }, 27 | { 28 | question: "In Switzerland, what animal delivers Easter eggs to kids?", 29 | choice1: "A rabbit", 30 | choice2: "A cuckoo", 31 | choice3: "A horse", 32 | choice4: "A bird", 33 | answer: 2, 34 | }, 35 | { 36 | question: "Households each spend how much on average on Easter annually? ($=USD)", 37 | choice1: "$1,001", 38 | choice2: "$201", 39 | choice3: "$820", 40 | choice4: "$131", 41 | answer: 4, 42 | }, 43 | { 44 | question: 45 | "In what country did the tradition of the Easter bunny originate?", 46 | choice1: "United States", 47 | choice2: "Germany", 48 | choice3: "Russia", 49 | choice4: "Dubai", 50 | answer: 2, 51 | }, 52 | { 53 | question: "When was the first White House Easter Egg Roll?", 54 | choice1: "1964", 55 | choice2: "1860", 56 | choice3: "1878", 57 | choice4: "1989", 58 | answer: 3, 59 | }, 60 | { 61 | question: "Where is the largest Easter egg museum in the world?", 62 | choice1: "Rome", 63 | choice2: "Paris", 64 | choice3: "London", 65 | choice4: "Poland", 66 | answer: 4, 67 | }, 68 | { 69 | question: "When Easter eggs were first dyed, it was to represent what?", 70 | choice1: "The colour of Jesus Christ's tombstone", 71 | choice2: "The blood of Jesus Christ", 72 | choice3: "The crucifix of Jesus Christ", 73 | choice4: "Mother Mary", 74 | answer: 2, 75 | }, 76 | { 77 | question: "How many states consider Good Friday a holiday in the US?", 78 | choice1: "102", 79 | choice2: "57", 80 | choice3: "12", 81 | choice4: "5", 82 | answer: 3, 83 | }, 84 | { 85 | question: 86 | "Buying what for Easter is said to bring good luck for the rest of the year?", 87 | choice1: "A new car", 88 | choice2: "Easter Eggs", 89 | choice3: "A new house", 90 | choice4: "New clothes", 91 | answer: 4, 92 | }, 93 | { 94 | question: "Dyeing Easter eggs is a tradition that began in which country?", 95 | choice1: "Russia", 96 | choice2: "Ukraine", 97 | choice3: "Germany", 98 | choice4: "Algeria", 99 | answer: 2, 100 | }, 101 | { 102 | question: "What dried fruit is in hot cross buns?", 103 | choice1: "Raisins", 104 | choice2: "Walnuts", 105 | choice3: "Almonds", 106 | choice4: "Cashews", 107 | answer: 1, 108 | }, 109 | ]; 110 | -------------------------------------------------------------------------------- /js/data/football.js: -------------------------------------------------------------------------------- 1 | export default [ 2 | { 3 | question: "Who was the best football player of Europe in 1998?", 4 | choice1: "Marcel Desailly from Milan and Chelsea", 5 | choice2: "Lilian Thuram from Parma", 6 | choice3: "Zinedine Zidane from Juventus", 7 | choice4: "Michael Owen from Liverpool", 8 | answer: 3, 9 | }, 10 | { 11 | question: "When was the first Premier League played?", 12 | choice1: "1891-92", 13 | choice2: "1952-53", 14 | choice3: "1985-86", 15 | choice4: "1992-93", 16 | answer: 4, 17 | }, 18 | { 19 | question: 20 | "In 1990, this team failed to score even one goal in the World Cup final", 21 | choice1: "Argentina", 22 | choice2: "Brazil", 23 | choice3: "Paris Saint-Germain", 24 | choice4: "Portugal", 25 | answer: 1, 26 | }, 27 | { 28 | question: "Whcih played scores the fastest hat-trick in Premier League", 29 | choice1: "Eric Cantona", 30 | choice2: "Sadio Mane", 31 | choice3: "Brian Deane", 32 | choice4: "Rod Wallace", 33 | answer: 2, 34 | }, 35 | { 36 | question: 37 | "Which Barcalona player was jailed after it was found that his password was fake?", 38 | choice1: "Jordi Alba", 39 | choice2: "Martin Braithwaite", 40 | choice3: "Ronald Araujo", 41 | choice4: "Ronaldinho", 42 | answer: 4, 43 | }, 44 | { 45 | question: "Who was the first Premier League manager who was fired?", 46 | choice1: "Ian Porterfield", 47 | choice2: "George Graham", 48 | choice3: "Stewart Houston", 49 | choice4: "Bruce Rioch", 50 | answer: 1, 51 | }, 52 | { 53 | question: "When was the original FA Cup Trophy Stolen? ", 54 | choice1: "1900", 55 | choice2: "1885", 56 | choice3: "1895", 57 | choice4: "1845", 58 | answer: 3, 59 | }, 60 | { 61 | question: 62 | "After how many games did Cristiano Ronaldo score his first Champions League goal?", 63 | choice1: "27", 64 | choice2: "17", 65 | choice3: "5", 66 | choice4: "36", 67 | answer: 1, 68 | }, 69 | { 70 | question: 71 | "In which club did Nicky Byrne play before finding his calling in Music?", 72 | choice1: "Everton", 73 | choice2: "Leeds United", 74 | choice3: "Tottenham", 75 | choice4: "Manchester City", 76 | answer: 2, 77 | }, 78 | { 79 | question: "Liverpool was founded in which year?", 80 | choice1: "1890", 81 | choice2: "1950", 82 | choice3: "1892", 83 | choice4: "1991", 84 | answer: 3, 85 | }, 86 | ]; 87 | -------------------------------------------------------------------------------- /js/data/fruit.js: -------------------------------------------------------------------------------- 1 | export default [ 2 | { 3 | question: "Where was the kiwi fruit first grown?", 4 | choice1: "New Zealand", 5 | choice2: "China", 6 | choice3: "Australia", 7 | choice4: "Chile", 8 | answer: 2, 9 | }, 10 | { 11 | question: "What percentage of the watermelon is water?", 12 | choice1: "64%", 13 | choice2: "39%", 14 | choice3: "92%", 15 | choice4: "80%", 16 | answer: 3, 17 | }, 18 | { 19 | question: "What do apple pipes contain?", 20 | choice1: "Cyanide", 21 | choice2: "Juice", 22 | choice3: "Sodium", 23 | choice4: "Vitamin H", 24 | answer: 1, 25 | }, 26 | { 27 | question: "What is the other name for Chinese Gooseberry?", 28 | choice1: "Plum", 29 | choice2: "Lime", 30 | choice3: "Cherry", 31 | choice4: "Kiwi", 32 | answer: 4, 33 | }, 34 | { 35 | question: "There is a museum in Belgium dedicated to", 36 | choice1: "Papya", 37 | choice2: "Strawberries", 38 | choice3: "Cherry", 39 | choice4: "Pear", 40 | answer: 2, 41 | }, 42 | { 43 | question: "The only fruit to have seeds on the outside is?", 44 | choice1: "Strawberry", 45 | choice2: "Lychee", 46 | choice3: "Pineapple", 47 | choice4: "Raspberry", 48 | answer: 1, 49 | }, 50 | { 51 | question: 52 | "What was named as the state fruit of Ohio, in the year January 2009?", 53 | choice1: "Apple", 54 | choice2: "Banana", 55 | choice3: "Cranberry", 56 | choice4: "Blueberry", 57 | answer: 3, 58 | }, 59 | { 60 | question: "What is the most-consumed fruit in the world?", 61 | choice1: "Mangoes", 62 | choice2: "Apples", 63 | choice3: "Lychees", 64 | choice4: "Strawberries", 65 | answer: 1, 66 | }, 67 | { 68 | question: "Which fruit contains heart-healthy fats?", 69 | choice1: "Coconut", 70 | choice2: "Olives", 71 | choice3: "Avocado", 72 | choice4: "All of the above", 73 | answer: 4, 74 | }, 75 | { 76 | question: "Which fruit has the highest oil content?", 77 | choice1: "Peach", 78 | choice2: "Avocado", 79 | choice3: "Olive", 80 | choice4: "Mango", 81 | answer: 2, 82 | }, 83 | ]; 84 | -------------------------------------------------------------------------------- /js/data/game.js: -------------------------------------------------------------------------------- 1 | export default [ 2 | { 3 | question: "From which country do French fries originate?", 4 | choice1: "Italy", 5 | choice2: "Belgium", 6 | choice3: "United States of America", 7 | choice4: "India", 8 | answer: 2, 9 | }, 10 | { 11 | question: 'What does "perro" mean in English?', 12 | choice1: "Cat", 13 | choice2: "Cheese", 14 | choice3: "Dog", 15 | choice4: "Rat", 16 | answer: 3, 17 | }, 18 | { 19 | question: 20 | "Which of these is the best home-remedy to reduce the appearance of acne scars?", 21 | choice1: "Yogurt", 22 | choice2: "Turmeric", 23 | choice3: "Baking Soda", 24 | choice4: "Vinegar", 25 | answer: 1, 26 | }, 27 | { 28 | question: "Which country invented tea?", 29 | choice1: "United States of America", 30 | choice2: "Italy", 31 | choice3: "Denmark", 32 | choice4: "China", 33 | answer: 4, 34 | }, 35 | { 36 | question: "About how many taste buds does the average human tongue have?", 37 | choice1: "2,000", 38 | choice2: "5,000", 39 | choice3: "10,000", 40 | choice4: "20,000", 41 | answer: 3, 42 | }, 43 | { 44 | question: "What is the symbol for potassium?", 45 | choice1: "U", 46 | choice2: "Kr", 47 | choice3: "P", 48 | choice4: "K", 49 | answer: 4, 50 | }, 51 | { 52 | question: "What year was the very first model of the iPhone released?", 53 | choice1: "2003", 54 | choice2: "2007", 55 | choice3: "2006", 56 | choice4: "2010", 57 | answer: 2, 58 | }, 59 | { 60 | question: "How long have snakes been roaming Earth?", 61 | choice1: "128 million years", 62 | choice2: "3 million years", 63 | choice3: "50 million years", 64 | choice4: "100 million years", 65 | answer: 1, 66 | }, 67 | { 68 | question: "What color do about 75 percent of national flags contain?", 69 | choice1: "Blue", 70 | choice2: "Yellow", 71 | choice3: "Green", 72 | choice4: "Red", 73 | answer: 4, 74 | }, 75 | { 76 | question: "What is the population of Switzerland?", 77 | choice1: "3.5 million", 78 | choice2: "10 million", 79 | choice3: "8.6 million", 80 | choice4: "5 million", 81 | answer: 3, 82 | }, 83 | { 84 | question: 85 | "In what state did the first official American baseball game take place?", 86 | choice1: "Florida", 87 | choice2: "North Carolina", 88 | choice3: "New York", 89 | choice4: "New Jersey", 90 | answer: 4, 91 | }, 92 | { 93 | question: "What is the largest country in the World?", 94 | choice1: "United States of America", 95 | choice2: "Russia", 96 | choice3: "Belgium", 97 | choice4: "Italy", 98 | answer: 2, 99 | }, 100 | { 101 | question: "What was the most streamed show on Netflix in 2020?", 102 | choice1: "Schitts Creek", 103 | choice2: "Supernatural", 104 | choice3: "The Blacklist", 105 | choice4: "The Vampire Diaries", 106 | answer: 1, 107 | }, 108 | { 109 | question: "How many bones does a shark have?", 110 | choice1: "2", 111 | choice2: "5", 112 | choice3: "4", 113 | choice4: "0", 114 | answer: 4, 115 | }, 116 | { 117 | question: "Which planet is closest to the sun?", 118 | choice1: "Mars", 119 | choice2: "Earth", 120 | choice3: "Mercury", 121 | choice4: "Venus", 122 | answer: 3, 123 | }, 124 | ]; 125 | -------------------------------------------------------------------------------- /js/data/general.js: -------------------------------------------------------------------------------- 1 | export default [ 2 | { 3 | question: "From which country do French fries originate?", 4 | choice1: "Italy", 5 | choice2: "Belgium", 6 | choice3: "United States of America", 7 | choice4: "India", 8 | answer: 2, 9 | }, 10 | { 11 | question: 'What does "perro" mean in English?', 12 | choice1: "Cat", 13 | choice2: "Cheese", 14 | choice3: "Dog", 15 | choice4: "Rat", 16 | answer: 3, 17 | }, 18 | { 19 | question: 20 | "Which of these is the best home-remedy to reduce the appearance of acne scars?", 21 | choice1: "Yogurt", 22 | choice2: "Turmeric", 23 | choice3: "Baking Soda", 24 | choice4: "Vinegar", 25 | answer: 1, 26 | }, 27 | { 28 | question: "Which country invented tea?", 29 | choice1: "United States of America", 30 | choice2: "Italy", 31 | choice3: "Denmark", 32 | choice4: "China", 33 | answer: 4, 34 | }, 35 | { 36 | question: "About how many taste buds does the average human tongue have?", 37 | choice1: "2,000", 38 | choice2: "5,000", 39 | choice3: "10,000", 40 | choice4: "20,000", 41 | answer: 3, 42 | }, 43 | { 44 | question: "What is the symbol for potassium?", 45 | choice1: "U", 46 | choice2: "Kr", 47 | choice3: "P", 48 | choice4: "K", 49 | answer: 4, 50 | }, 51 | { 52 | question: "What year was the very first model of the iPhone released?", 53 | choice1: "2003", 54 | choice2: "2007", 55 | choice3: "2006", 56 | choice4: "2010", 57 | answer: 2, 58 | }, 59 | { 60 | question: "How long have snakes been roaming Earth?", 61 | choice1: "128 million years", 62 | choice2: "3 million years", 63 | choice3: "50 million years", 64 | choice4: "100 million years", 65 | answer: 1, 66 | }, 67 | { 68 | question: "What color do about 75 percent of national flags contain?", 69 | choice1: "Blue", 70 | choice2: "Yellow", 71 | choice3: "Green", 72 | choice4: "Red", 73 | answer: 4, 74 | }, 75 | { 76 | question: "What is the population of Switzerland?", 77 | choice1: "3.5 million", 78 | choice2: "10 million", 79 | choice3: "8.6 million", 80 | choice4: "5 million", 81 | answer: 3, 82 | }, 83 | { 84 | question: 85 | "In what state did the first official American baseball game take place?", 86 | choice1: "Florida", 87 | choice2: "North Carolina", 88 | choice3: "New York", 89 | choice4: "New Jersey", 90 | answer: 4, 91 | }, 92 | { 93 | question: "What is the largest country in the World?", 94 | choice1: "United States of America", 95 | choice2: "Russia", 96 | choice3: "Belgium", 97 | choice4: "Italy", 98 | answer: 2, 99 | }, 100 | { 101 | question: "What was the most streamed show on Netflix in 2020?", 102 | choice1: "Schitts Creek", 103 | choice2: "Supernatural", 104 | choice3: "The Blacklist", 105 | choice4: "The Vampire Diaries", 106 | answer: 1, 107 | }, 108 | { 109 | question: "How many bones does a shark have?", 110 | choice1: "2", 111 | choice2: "5", 112 | choice3: "4", 113 | choice4: "0", 114 | answer: 4, 115 | }, 116 | { 117 | question: "Which planet is closest to the sun?", 118 | choice1: "Mars", 119 | choice2: "Earth", 120 | choice3: "Mercury", 121 | choice4: "Venus", 122 | answer: 3, 123 | }, 124 | ]; 125 | -------------------------------------------------------------------------------- /js/data/index.js: -------------------------------------------------------------------------------- 1 | // Every import returns [{},{}...] 2 | /**Example 3 | { 4 | question: "Which year was the first web browser created in?", 5 | choice1: "1985", 6 | choice2: "1993", 7 | choice3: "1990", 8 | choice4: "1991", 9 | answer: 3, 10 | } 11 | */ 12 | import browsersQA from "./browsers.js"; 13 | import xmasQA from "./christmas.js"; 14 | import computerpartsQA from "./computerparts.js"; 15 | import countriesQA from "./countries.js"; 16 | 17 | import disneyQA from "./disney.js"; 18 | import easterQA from "./easter.js"; 19 | import footballQA from "./football.js"; 20 | 21 | import fruitQA from "./fruit.js"; 22 | import generalQA from "./general.js"; 23 | import kendallQA from "./kendall_quiz.js"; 24 | 25 | import minecraftQA from "./minecraft.js"; 26 | import presidentsQA from "./presidents.js"; 27 | import robloxQA from "./roblox.js"; 28 | 29 | import techQA from "./tech.js"; 30 | import gameQA from "./game.js"; 31 | import ProgramminglanguageQA from "./programminglanguage.js"; 32 | 33 | import youtubeQA from "./youtube.js"; 34 | import TheOdd1sOutQA from "./TheOdd1sOut.js"; 35 | import JaidenAnimationsQA from "./JaidenAnimations.js"; 36 | 37 | 38 | export { 39 | browsersQA, 40 | xmasQA, 41 | countriesQA, 42 | computerpartsQA, 43 | disneyQA, 44 | easterQA, 45 | footballQA, 46 | fruitQA, 47 | generalQA, 48 | kendallQA, 49 | minecraftQA, 50 | presidentsQA, 51 | robloxQA, 52 | techQA, 53 | gameQA, 54 | ProgramminglanguageQA, 55 | youtubeQA, 56 | TheOdd1sOutQA, 57 | JaidenAnimationsQA, 58 | }; 59 | -------------------------------------------------------------------------------- /js/data/kendall_quiz.js: -------------------------------------------------------------------------------- 1 | export default [ 2 | { 3 | question: 'What is Kendall"s favorite color?', 4 | choice1: "Blue", 5 | choice2: "Red", 6 | choice3: "Green", 7 | choice4: "Yellow", 8 | answer: 3, 9 | }, 10 | { 11 | question: "Since when did Kendall begin his coding journey?", 12 | choice1: "2017", 13 | choice2: "2018", 14 | choice3: "2019", 15 | choice4: "2020", 16 | answer: 4, 17 | }, 18 | { 19 | question: 'Which day is Kendall"s birthday?', 20 | choice1: "15th July", 21 | choice2: "2nd May", 22 | choice3: "18th November", 23 | choice4: "10th May", 24 | answer: 2, 25 | }, 26 | ]; 27 | -------------------------------------------------------------------------------- /js/data/minecraft.js: -------------------------------------------------------------------------------- 1 | export default [ 2 | { 3 | question: 'In which country is playing "Minecraft" in school allowed?', 4 | choice1: "Singapore", 5 | choice2: "Malaysia", 6 | choice3: "Thailand", 7 | choice4: "Sweden", 8 | answer: 4, 9 | }, 10 | { 11 | question: 12 | "Which real life animal was recorded to produce the sound effects of the Ghasts?", 13 | choice1: "Cow", 14 | choice2: "Cat", 15 | choice3: "Dog", 16 | choice4: "Sheep", 17 | answer: 2, 18 | }, 19 | { 20 | question: "When was Minecraft released?", 21 | choice1: "15th Jan 2009", 22 | choice2: "18th November 2011", 23 | choice3: "27th June 2004", 24 | choice4: "29th March 2010", 25 | answer: 2, 26 | }, 27 | { 28 | question: "Which game inspired Notch to create Mincraft?", 29 | choice1: "Infiniminer", 30 | choice2: "Mines of Mars", 31 | choice3: "Adventure Miner", 32 | choice4: "Deep Miner", 33 | answer: 1, 34 | }, 35 | { 36 | question: "Which of the following is NOT a Minecraft mod?", 37 | choice1: "Aether", 38 | choice2: "Aether II", 39 | choice3: "Aether II: Reloaded", 40 | choice4: "Aether II: The Silver City", 41 | answer: 3, 42 | }, 43 | { 44 | question: 'How many people like to play "Minecraft" every month?', 45 | choice1: "100M+", 46 | choice2: "55M+", 47 | choice3: "200M+", 48 | choice4: "195M+", 49 | answer: 3, 50 | }, 51 | { 52 | question: 'How many night creatures can you find in "Minecraft"?', 53 | choice1: "10", 54 | choice2: "3", 55 | choice3: "7", 56 | choice4: "5", 57 | answer: 1, 58 | }, 59 | { 60 | question: "How far away can you be from a Ghast for it to see you?", 61 | choice1: "30 blocks", 62 | choice2: "25 blocks", 63 | choice3: "100 blocks", 64 | choice4: "50 blocks", 65 | answer: 3, 66 | }, 67 | { 68 | question: "What is the best way to kill a Spider in Minecraft?", 69 | choice1: "With a sword", 70 | choice2: "With a stick", 71 | choice3: "With a stick and a spider eye", 72 | choice4: "With a pickaxe", 73 | answer: 1, 74 | }, 75 | { 76 | question: "Which of these mobs does not drop a item?", 77 | choice1: "Horse", 78 | choice2: "Donkey", 79 | choice3: "Polar Beast", 80 | choice4: "Silverfish", 81 | answer: 4, 82 | }, 83 | ]; 84 | -------------------------------------------------------------------------------- /js/data/presidents.js: -------------------------------------------------------------------------------- 1 | export default [ 2 | { 3 | question: "Who was the first American-born president?", 4 | choice1: "George Washington", 5 | choice2: "Martin Van Buren", 6 | choice3: "John Quincy Adams", 7 | choice4: "Thomas Jefferson", 8 | answer: 2, 9 | }, 10 | { 11 | question: "Which president made Christmas a national holiday?", 12 | choice1: "James K. Polk", 13 | choice2: "Zachary Taylo", 14 | choice3: "Ulysses S. Grant", 15 | choice4: "Abraham Lincoln", 16 | answer: 3, 17 | }, 18 | { 19 | question: 20 | "Which president was a classically trained pianist and played 4 other instruments?", 21 | choice1: "Richard Nixon", 22 | choice2: "William H. Taft", 23 | choice3: "Woodrow Wilson", 24 | choice4: "Chester A. Arthur", 25 | answer: 1, 26 | }, 27 | { 28 | question: 29 | "Which president put up the first Christmas tree in the White House?", 30 | choice1: "Herbert C. Hoover", 31 | choice2: "Warren G. Harding", 32 | choice3: "Calvin Coolidge", 33 | choice4: "Benjamin Harrison", 34 | answer: 4, 35 | }, 36 | { 37 | question: 38 | "Who was the first president to ride in a car to his inauguration?", 39 | choice1: "John Adams", 40 | choice2: "George W. Bush", 41 | choice3: "Warren G. Harding", 42 | choice4: "Barack H. Obama", 43 | answer: 3, 44 | }, 45 | ]; 46 | -------------------------------------------------------------------------------- /js/data/roblox.js: -------------------------------------------------------------------------------- 1 | export default [ 2 | { 3 | question: "What does the name Roblox actually mean?", 4 | choice1: "It was invented by a person called Rob Lox", 5 | choice2: "It's a random name got on a Game Name Generator", 6 | choice3: "It's a combination of the words 'robot' and 'blocks'", 7 | choice4: "It's short for 'roadblocks'", 8 | answer: 3, 9 | }, 10 | { 11 | question: "Who invented Roblox?", 12 | choice1: "David Baszucki", 13 | choice2: "Matt Kaufman", 14 | choice3: "Mark Reinstra", 15 | choice4: "Daniel Sturman", 16 | answer: 1, 17 | }, 18 | { 19 | question: "When was Roblox released?", 20 | choice1: "2008", 21 | choice2: "2005", 22 | choice3: "2009", 23 | choice4: "2006", 24 | answer: 4, 25 | }, 26 | { 27 | question: "How many hats can a character wear at once in Roblox?", 28 | choice1: "5", 29 | choice2: "3", 30 | choice3: "10", 31 | choice4: "7", 32 | answer: 2, 33 | }, 34 | { 35 | question: "How many people play Roblox every month as of 2021?", 36 | choice1: "25M+", 37 | choice2: "100M+", 38 | choice3: "250M+", 39 | choice4: "180M+", 40 | answer: 4, 41 | }, 42 | { 43 | question: "What was the original name of Roblox?", 44 | choice1: "Ultra Blocks", 45 | choice2: "Dyna Blocks", 46 | choice3: "Jammed Blocks", 47 | choice4: "Xtra Blocks", 48 | answer: 2, 49 | }, 50 | { 51 | question: "Which of these is a real thing in Roblox?", 52 | choice1: "Ludicrous Builders Club", 53 | choice2: "Preposterous Builders Club", 54 | choice3: "Outrageous Builders Club", 55 | choice4: "Terrible Builders Club", 56 | answer: 3, 57 | }, 58 | ]; 59 | -------------------------------------------------------------------------------- /js/data/tech.js: -------------------------------------------------------------------------------- 1 | export default [ 2 | { 3 | question: "How many computer languages are in use?", 4 | choice1: "10,000", 5 | choice2: "50", 6 | choice3: "2,000", 7 | choice4: "5,000", 8 | answer: 3, 9 | }, 10 | { 11 | question: 12 | "What device, released in 1993, gave rise to the term personal digital assistant?", 13 | choice1: "Newton MessagePad", 14 | choice2: "Clippy by Microsoft", 15 | choice3: "Palm Pilot", 16 | choice4: "Cortana", 17 | answer: 1, 18 | }, 19 | { 20 | question: 'Who coined the term "artificial intelligence"?', 21 | choice1: "Herbert A. Simon", 22 | choice2: "Charles BachmanEngland", 23 | choice3: "Donald Ervin Knuth", 24 | choice4: "John McCarthy", 25 | answer: 4, 26 | }, 27 | { 28 | question: "What does CPU stand for?", 29 | choice1: "Computer Protection Unit", 30 | choice2: "Central Processing Unit", 31 | choice3: "Computer Parts of USA", 32 | choice4: "Computer Processing Unit", 33 | answer: 2, 34 | }, 35 | { 36 | question: "Who invented C++", 37 | choice1: "Dennis Ritchie", 38 | choice2: "Guido van Rossum", 39 | choice3: "James Gosling", 40 | choice4: "Bjarne Stroustrup", 41 | answer: 4, 42 | }, 43 | ]; 44 | -------------------------------------------------------------------------------- /js/data/youtube.js: -------------------------------------------------------------------------------- 1 | export default [ 2 | { 3 | question: "Which year was YouTube founded?", 4 | choice1: "2003", 5 | choice2: "2005", 6 | choice3: "2007", 7 | choice4: "2010", 8 | answer: 2, 9 | }, 10 | { 11 | question: "Where was YouTube founded?", 12 | choice1: "Manhattan, New York, USA", 13 | choice2: "San Bruno, California, USA", 14 | choice3: "Silicon Valley, California, USA", 15 | choice4: "San Mateo, California, USA", 16 | answer: 4, 17 | }, 18 | { 19 | question: "What was the first video uploaded to YouTube?", 20 | choice1: "Me at The Zoo", 21 | choice2: "Arlington", 22 | choice3: "tribute", 23 | choice4: "Amazing Lip Sync", 24 | answer: 1, 25 | }, 26 | { 27 | question: "What was the first video to reach 1 million views?", 28 | choice1: "Pokemon Theme Music Video", 29 | choice2: "The Chronic of Narnia Rap", 30 | choice3: "Evolution of Dance", 31 | choice4: "Charlie Bit My Finger", 32 | answer: 3, 33 | }, 34 | { 35 | question: "What was the first YouTuber to reach 1 million subscribers?", 36 | choice1: "PewDiePie", 37 | choice2: "Fred", 38 | choice3: "Smosh", 39 | choice4: "nigahiga", 40 | answer: 2, 41 | }, 42 | { 43 | question: "What was the first company to start a YouTube channel?", 44 | choice1: "Disney", 45 | choice2: "Nike", 46 | choice3: "BBC", 47 | choice4: "T-Series", 48 | answer: 3, 49 | }, 50 | { 51 | question: "What was the first video to reach 1 billion views?", 52 | choice1: "Gangnam Style", 53 | choice2: "Baby", 54 | choice3: "Despacito", 55 | choice4: "See You Again", 56 | answer: 1, 57 | }, 58 | { 59 | question: "Which is the pair of founders of YouTuber?", 60 | choice1: "Jawred Karim, Colton Adams and Chet Harley", 61 | choice2: "Jawred Karim, Steve Chen and Chad Hurley", 62 | choice3: "Jawred Karim, Stanley Chernoff and Jordan Karson", 63 | choice4: "Jawred Karim, Jamal Kareemson and Chad Hurley", 64 | answer: 2, 65 | }, 66 | { 67 | question: "Which popular YouTuber started his channel as a gaming commentator?", 68 | choice1: "PewDiePie", 69 | choice2: "Markiplier", 70 | choice3: "Jacksepticeye", 71 | choice4: "DanTDM", 72 | answer: 1, 73 | }, 74 | { 75 | question: "Which popular YouTuber is known for his/her vlogs and daily life updates?", 76 | choice1: "Shane Dawson", 77 | choice2: "Lilly Singh", 78 | choice3: "David Dobrik", 79 | choice4: "Casey Neistat", 80 | answer: 4, 81 | }, 82 | ]; 83 | -------------------------------------------------------------------------------- /js/end.js: -------------------------------------------------------------------------------- 1 | const username = document.querySelector("#username"); 2 | const saveScoreBtn = document.querySelector("#saveScoreBtn"); 3 | const finalScore = document.querySelector("#finalScore"); 4 | const noScore = document.querySelector("#noScore"); 5 | const mostRecentScore = localStorage.getItem("mostRecentScore"); 6 | const noOfCorrect = localStorage.getItem("noofanswerscorrect"); 7 | const totalQuestions = localStorage.getItem("noofquestions"); 8 | 9 | const highScores = JSON.parse(localStorage.getItem("highScores")) || []; 10 | 11 | const MAX_HIGH_SCORES = 5; 12 | 13 | finalScore.innerText = mostRecentScore; 14 | noScore.innerText = `${noOfCorrect}/${totalQuestions}`; 15 | 16 | username.addEventListener("keyup", () => { 17 | saveScoreBtn.disabled = !username.value; 18 | }); 19 | 20 | saveHighScore = (e) => { 21 | e.preventDefault(); 22 | 23 | const score = { 24 | score: mostRecentScore, 25 | name: username.value, 26 | }; 27 | 28 | highScores.push(score); 29 | 30 | highScores.sort((a, b) => { 31 | return b.score - a.score; 32 | }); 33 | highScores.splice(MAX_HIGH_SCORES); 34 | 35 | localStorage.setItem("highScores", JSON.stringify(highScores)); 36 | window.location.assign("/"); 37 | }; 38 | 39 | function goBack(n) { 40 | history.go(n); 41 | } 42 | -------------------------------------------------------------------------------- /js/highscores.js: -------------------------------------------------------------------------------- 1 | const highScoresList = document.querySelector("#highScoresList"); 2 | const highScores = JSON.parse(localStorage.getItem("highScores")) || []; 3 | 4 | highScoresList.innerHTML = highScores 5 | .map((score) => { 6 | return `
  • ${score.name} - ${score.score}
  • `; 7 | }) 8 | .join(""); 9 | -------------------------------------------------------------------------------- /js/rules.js: -------------------------------------------------------------------------------- 1 | document.querySelector(".go-back").addEventListener("click", () => { 2 | window.history.back(); 3 | }); 4 | -------------------------------------------------------------------------------- /js/songs.js: -------------------------------------------------------------------------------- 1 | var songs = [ 2 | "/music/apc.mp3", 3 | "/music/beachvibes.mp3", 4 | "/music/bliss.mp3", 5 | "/music/Fluffing-a-Duck.mp3", 6 | "/music/happyafricanvillage.mp3", 7 | "/music/happyandjoyfulchildren.mp3", 8 | "/music/newlands.mp3", 9 | "/music/sotb.mp3", 10 | "/music/tropicalfever.mp3", 11 | "/music/tropicalsoul.mp3", 12 | "/music/ukulele.mp3", 13 | ]; 14 | 15 | var audioElement = document.getElementById('my_audio'); 16 | var musicOnButton = document.getElementById('musicOnButton'); 17 | 18 | function playMusic() { 19 | var randomIndex = Math.floor(Math.random() * songs.length); 20 | var audioSource = document.getElementById('audio_source'); 21 | audioSource.src = songs[randomIndex]; 22 | audioElement.load(); 23 | 24 | audioElement.addEventListener('canplaythrough', function() { 25 | audioElement.play().catch(function(error) { 26 | console.log('Error playing audio:', error); 27 | pauseMusic(); 28 | }); 29 | musicOnButton.style.display = 'none'; 30 | }, { once: true }); 31 | 32 | audioElement.addEventListener('pause', function() { 33 | musicOnButton.style.display = 'block'; 34 | }); 35 | } 36 | 37 | function pauseMusic() { 38 | audioElement.pause(); 39 | musicOnButton.style.display = 'block'; 40 | } 41 | 42 | function toggleMusic() { 43 | if (audioElement.paused) { 44 | playMusic(); 45 | } else { 46 | pauseMusic(); 47 | } 48 | } 49 | 50 | // Play music on page load 51 | window.addEventListener('load', function() { 52 | playMusic(); 53 | }); -------------------------------------------------------------------------------- /js/topics.js: -------------------------------------------------------------------------------- 1 | function toggleHidde(containerId) { 2 | // removes one & adds the other 3 | document.getElementById(containerId).classList.toggle("hide"); 4 | document.getElementById(containerId).classList.toggle("show"); 5 | } 6 | 7 | document 8 | .getElementById("technology") 9 | .addEventListener("click", () => toggleHidde("technologyMore")); 10 | 11 | document 12 | .getElementById("games") 13 | .addEventListener("click", () => toggleHidde("gamesMore")); 14 | 15 | document 16 | .getElementById("festivals") 17 | .addEventListener("click", () => toggleHidde("festivalsMore")); 18 | 19 | document 20 | .getElementById("general") 21 | .addEventListener("click", () => toggleHidde("generalMore")); 22 | 23 | document 24 | .getElementById("youtube") 25 | .addEventListener("click", () => toggleHidde("youtubeMore")); 26 | 27 | document 28 | .getElementById("others") 29 | .addEventListener("click", () => toggleHidde("othersMore")); 30 | 31 | document.querySelector(".go-back").addEventListener("click", () => { 32 | window.history.back(); 33 | }); 34 | -------------------------------------------------------------------------------- /music/Fluffing-a-Duck.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KendallDoesCoding/quiz/adbe094314dbba339b495fde5d723a85c9ba7b57/music/Fluffing-a-Duck.mp3 -------------------------------------------------------------------------------- /music/apc.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KendallDoesCoding/quiz/adbe094314dbba339b495fde5d723a85c9ba7b57/music/apc.mp3 -------------------------------------------------------------------------------- /music/beachvibes.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KendallDoesCoding/quiz/adbe094314dbba339b495fde5d723a85c9ba7b57/music/beachvibes.mp3 -------------------------------------------------------------------------------- /music/bliss.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KendallDoesCoding/quiz/adbe094314dbba339b495fde5d723a85c9ba7b57/music/bliss.mp3 -------------------------------------------------------------------------------- /music/christmas/AVeryMogulChristmas.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KendallDoesCoding/quiz/adbe094314dbba339b495fde5d723a85c9ba7b57/music/christmas/AVeryMogulChristmas.mp3 -------------------------------------------------------------------------------- /music/christmas/DeckTheHalls.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KendallDoesCoding/quiz/adbe094314dbba339b495fde5d723a85c9ba7b57/music/christmas/DeckTheHalls.mp3 -------------------------------------------------------------------------------- /music/christmas/FelizNavidad.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KendallDoesCoding/quiz/adbe094314dbba339b495fde5d723a85c9ba7b57/music/christmas/FelizNavidad.mp3 -------------------------------------------------------------------------------- /music/christmas/It'sThatTimeOfTheYear.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KendallDoesCoding/quiz/adbe094314dbba339b495fde5d723a85c9ba7b57/music/christmas/It'sThatTimeOfTheYear.mp3 -------------------------------------------------------------------------------- /music/happyafricanvillage.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KendallDoesCoding/quiz/adbe094314dbba339b495fde5d723a85c9ba7b57/music/happyafricanvillage.mp3 -------------------------------------------------------------------------------- /music/happyandjoyfulchildren.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KendallDoesCoding/quiz/adbe094314dbba339b495fde5d723a85c9ba7b57/music/happyandjoyfulchildren.mp3 -------------------------------------------------------------------------------- /music/newlands.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KendallDoesCoding/quiz/adbe094314dbba339b495fde5d723a85c9ba7b57/music/newlands.mp3 -------------------------------------------------------------------------------- /music/sotb.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KendallDoesCoding/quiz/adbe094314dbba339b495fde5d723a85c9ba7b57/music/sotb.mp3 -------------------------------------------------------------------------------- /music/tropicalfever.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KendallDoesCoding/quiz/adbe094314dbba339b495fde5d723a85c9ba7b57/music/tropicalfever.mp3 -------------------------------------------------------------------------------- /music/tropicalsoul.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KendallDoesCoding/quiz/adbe094314dbba339b495fde5d723a85c9ba7b57/music/tropicalsoul.mp3 -------------------------------------------------------------------------------- /music/ukulele.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KendallDoesCoding/quiz/adbe094314dbba339b495fde5d723a85c9ba7b57/music/ukulele.mp3 -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "8.0.1" 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "8.0.1" 3 | } 4 | -------------------------------------------------------------------------------- /pages/browsers/game.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | 14 | Quiz Page - Browsers 15 | 16 | 17 | 18 | 33 | 34 | 35 | 36 |
    37 |
    38 |
    39 |
    40 |

    Question

    41 |
    42 |
    43 |
    44 |
    45 |
    46 |

    Score

    47 |

    0

    48 |

    49 |

    -100

    50 |
    51 |
    52 |

    What is the answer to this question

    53 |
    54 |

    A

    55 |

    Choice

    56 |
    57 |
    58 |

    B

    59 |

    Choice 2

    60 |
    61 |
    62 |

    C

    63 |

    Choice 3

    64 |
    65 |
    66 |

    D

    67 |

    Choice 4

    68 |
    69 |
    70 |
    71 |
    72 | 75 | 76 | 89 |
    90 | 91 | 92 | 93 | -------------------------------------------------------------------------------- /pages/browsers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Browsers Quiz Game - Home Page 11 | 12 | 13 | 15 | 16 | 17 | 18 | 27 | 28 | 29 | 30 |
    31 |

    Are you Ready?

    32 |

    Browsers Quiz!

    33 |
    34 | Play 35 | 36 | Topics 37 | 38 | High Scores 39 | 40 | Rules & Info 41 | 42 | Question Suggestion 43 | 44 |
    45 |
    46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /pages/christmas/game.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | 14 | Quiz Page - Christmas 15 | 16 | 17 | 18 | 33 | 34 | 35 | 36 |
    37 |
    38 |
    39 |
    40 |

    Question

    41 |
    42 |
    43 |
    44 |
    45 |
    46 |

    Score

    47 |

    0

    48 |

    49 |

    -100

    50 |
    51 |
    52 |

    What is the answer to this question

    53 |
    54 |

    A

    55 |

    Choice

    56 |
    57 |
    58 |

    B

    59 |

    Choice 2

    60 |
    61 |
    62 |

    C

    63 |

    Choice 3

    64 |
    65 |
    66 |

    D

    67 |

    Choice 4

    68 |
    69 |
    70 |
    71 |
    72 | 75 | 76 | 89 |
    90 | 91 | 92 | 93 | -------------------------------------------------------------------------------- /pages/christmas/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Christmas Quiz Game - Home Page 11 | 12 | 13 | 15 | 16 | 17 | 18 | 27 | 28 | 29 | 30 |
    31 |

    Are you Ready?

    32 |

    Christmas Quiz!

    33 |
    34 | Play 35 | 36 | Topics 37 | 38 | High Scores 39 | 40 | Rules & Info 41 | 42 | Question Suggestion 43 | 44 |
    45 |
    46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /pages/computer_parts/game.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | 14 | Quiz Page - Computer Parts 15 | 16 | 17 | 18 | 33 | 34 | 35 | 36 |
    37 |
    38 |
    39 |
    40 |

    Question

    41 |
    42 |
    43 |
    44 |
    45 |
    46 |

    Score

    47 |

    0

    48 |

    49 |

    -100

    50 |
    51 |
    52 |

    What is the answer to this question

    53 |
    54 |

    A

    55 |

    Choice

    56 |
    57 |
    58 |

    B

    59 |

    Choice 2

    60 |
    61 |
    62 |

    C

    63 |

    Choice 3

    64 |
    65 |
    66 |

    D

    67 |

    Choice 4

    68 |
    69 |
    70 |
    71 |
    72 | 75 | 76 | 89 |
    90 | 91 | 92 | 93 | -------------------------------------------------------------------------------- /pages/computer_parts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Computer Parts Quiz Game - Home Page 11 | 12 | 13 | 15 | 16 | 17 | 18 | 27 | 28 | 29 | 30 |
    31 |

    Are you Ready?

    32 |

    Computer Parts Quiz!

    33 |
    34 | Play 35 | 36 | Topics 37 | 38 | High Scores 39 | 40 | Rules & Info 41 | 42 | Question Suggestion 43 | 44 |
    45 |
    46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /pages/countries/game.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 17 | 18 | Quiz Page - Countries 19 | 20 | 21 | 22 | 37 | 38 | 39 | 40 |
    41 |
    42 |
    43 |
    44 |

    Question

    45 |
    46 |
    47 |
    48 |
    49 |
    50 |

    Score

    51 |

    0

    52 |

    53 |

    -100

    54 |
    55 |
    56 |

    What is the answer to this question

    57 |
    58 |

    A

    59 |

    Choice

    60 |
    61 |
    62 |

    B

    63 |

    Choice 2

    64 |
    65 |
    66 |

    C

    67 |

    Choice 3

    68 |
    69 |
    70 |

    D

    71 |

    Choice 4

    72 |
    73 |
    74 |
    75 |
    76 | 79 | 80 | 93 |
    94 | 95 | 96 | 97 | -------------------------------------------------------------------------------- /pages/countries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Countries Quiz Game - Home Page 11 | 12 | 13 | 15 | 16 | 17 | 18 | 27 | 28 | 29 | 30 |
    31 |

    Are you Ready?

    32 |

    Countries Quiz!

    33 |
    34 | Play 35 | 36 | Topics 37 | 38 | High Scores 39 | 40 | Rules & Info 41 | 42 | Question Suggestion 43 | 44 |
    45 |
    46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /pages/disney/game.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | 14 | Quiz Page - Disney 15 | 16 | 17 | 18 | 33 | 34 | 35 | 36 |
    37 |
    38 |
    39 |
    40 |

    Question

    41 |
    42 |
    43 |
    44 |
    45 |
    46 |

    Score

    47 |

    0

    48 |

    49 |

    -100

    50 |
    51 |
    52 |

    What is the answer to this question

    53 |
    54 |

    A

    55 |

    Choice

    56 |
    57 |
    58 |

    B

    59 |

    Choice 2

    60 |
    61 |
    62 |

    C

    63 |

    Choice 3

    64 |
    65 |
    66 |

    D

    67 |

    Choice 4

    68 |
    69 |
    70 |
    71 |
    72 | 75 | 76 | 89 |
    90 | 91 | 92 | 93 | -------------------------------------------------------------------------------- /pages/disney/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Disney Quiz Game - Home Page 11 | 12 | 13 | 15 | 16 | 17 | 18 | 27 | 28 | 29 | 30 |
    31 |

    Are you Ready?

    32 |

    Disney Quiz!

    33 |
    34 | Play 35 | 36 | Topics 37 | 38 | High Scores 39 | 40 | Rules & Info 41 | 42 | Question Suggestion 43 | 44 |
    45 |
    46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /pages/easter/game.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | 14 | Quiz Page - Easter 15 | 16 | 17 | 18 | 33 | 34 | 35 | 36 |
    37 |
    38 |
    39 |
    40 |

    Question

    41 |
    42 |
    43 |
    44 |
    45 |
    46 |

    Score

    47 |

    0

    48 |

    49 |

    -100

    50 |
    51 |
    52 |

    What is the answer to this question

    53 |
    54 |

    A

    55 |

    Choice

    56 |
    57 |
    58 |

    B

    59 |

    Choice 2

    60 |
    61 |
    62 |

    C

    63 |

    Choice 3

    64 |
    65 |
    66 |

    D

    67 |

    Choice 4

    68 |
    69 |
    70 |
    71 |
    72 | 75 | 76 | 89 |
    90 | 91 | 92 | 93 | -------------------------------------------------------------------------------- /pages/easter/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Easter Quiz Game - Home Page 11 | 12 | 13 | 14 | 16 | 17 | 18 | 19 | 28 | 29 | 30 | 31 |
    32 |
    33 |

    Are you Ready?

    34 |

    Easter Quiz!

    35 | 36 | Play 37 | 38 | Topics 39 | 40 | High Scores 41 | 42 | Rules & Info 43 | 44 | Question Suggestion 45 |
    46 |
    47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /pages/end.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | End Page 10 | 11 | 12 | 13 | 15 | 16 | 17 | 18 | 19 |
    20 |
    21 |

    0

    22 |
    23 |

    You got 0 correct.

    24 | 25 |
    26 |
    27 |

    Enter your name below to save your score!

    28 | 29 | 30 | 33 |
    34 | 35 |

    Play Again

    36 | 37 |

    Go back to Quiz Home Page Menu 38 |

    39 | Please rate our quiz! 40 |
    41 |
    42 | 43 | 44 | 52 | 53 | 54 | -------------------------------------------------------------------------------- /pages/football/game.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | 14 | Quiz Page - Football 15 | 16 | 17 | 18 | 33 | 34 | 35 | 36 |
    37 |
    38 |
    39 |
    40 |

    Question

    41 |
    42 |
    43 |
    44 |
    45 |
    46 |

    Score

    47 |

    0

    48 |

    49 |

    -100

    50 |
    51 |
    52 |

    What is the answer to this question

    53 |
    54 |

    A

    55 |

    Choice

    56 |
    57 |
    58 |

    B

    59 |

    Choice 2

    60 |
    61 |
    62 |

    C

    63 |

    Choice 3

    64 |
    65 |
    66 |

    D

    67 |

    Choice 4

    68 |
    69 |
    70 |
    71 |
    72 | 75 | 76 | 89 |
    90 | 91 | 92 | 93 | -------------------------------------------------------------------------------- /pages/football/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Football Quiz Game - Home Page 11 | 12 | 13 | 15 | 16 | 17 | 18 | 27 | 28 | 29 | 30 |
    31 |
    32 |

    Are you Ready?

    33 |

    Football Quiz!

    34 | 35 | Play 36 | 37 | Topics 38 | 39 | High Scores 40 | 41 | Rules & Info 42 | 43 | Question Suggestion 44 | 45 |
    46 |
    47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /pages/fruit/game.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | 14 | Quiz Page - Fruit 15 | 16 | 17 | 18 | 33 | 34 | 35 | 36 |
    37 |
    38 |
    39 |
    40 |

    Question

    41 |
    42 |
    43 |
    44 |
    45 |
    46 |

    Score

    47 |

    0

    48 |

    49 |

    -100

    50 |
    51 |
    52 |

    What is the answer to this question

    53 |
    54 |

    A

    55 |

    Choice

    56 |
    57 |
    58 |

    B

    59 |

    Choice 2

    60 |
    61 |
    62 |

    C

    63 |

    Choice 3

    64 |
    65 |
    66 |

    D

    67 |

    Choice 4

    68 |
    69 |
    70 |
    71 |
    72 | 75 | 76 | 89 |
    90 | 91 | 92 | 93 | -------------------------------------------------------------------------------- /pages/fruit/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Fruit Quiz Game - Home Page 11 | 12 | 13 | 15 | 16 | 17 | 18 | 27 | 28 | 29 | 30 |
    31 |
    32 |

    Are you Ready?

    33 |

    Fruit Quiz!

    34 | 35 | Play 36 | 37 | Topics 38 | 39 | High Scores 40 | 41 | Rules & Info 42 | 43 | Question Suggestion 44 | 45 |
    46 |
    47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /pages/game.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | Quiz Page - Main Game 14 | 15 | 16 | 17 | 32 | 33 | 34 | 35 |
    36 |
    37 |
    38 |
    39 |

    Question

    40 |
    41 |
    42 |
    43 |
    44 |
    45 |

    Score

    46 |

    0

    47 |

    48 |

    -100

    49 |
    50 |
    51 |

    What is the answer to this question

    52 |
    53 |

    A

    54 |

    Choice

    55 |
    56 |
    57 |

    B

    58 |

    Choice 2

    59 |
    60 |
    61 |

    C

    62 |

    Choice 3

    63 |
    64 |
    65 |

    D

    66 |

    Choice 4

    67 |
    68 |
    69 |
    70 |
    71 | 74 | 75 | 88 |
    89 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /pages/general_knowledge/game.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 17 | 18 | Quiz Page - General Knowledge 19 | 20 | 21 | 22 | 23 | 38 | 39 | 40 | 41 |
    42 |
    43 |
    44 |
    45 |

    Question

    46 |
    47 |
    48 |
    49 |
    50 |
    51 |

    Score

    52 |

    0

    53 |

    54 |

    -100

    55 |
    56 |
    57 |

    What is the answer to this question

    58 |
    59 |

    A

    60 |

    Choice

    61 |
    62 |
    63 |

    B

    64 |

    Choice 2

    65 |
    66 |
    67 |

    C

    68 |

    Choice 3

    69 |
    70 |
    71 |

    D

    72 |

    Choice 4

    73 |
    74 |
    75 |
    76 |
    77 | 80 | 81 | 94 |
    95 | 96 | 97 | 98 | -------------------------------------------------------------------------------- /pages/general_knowledge/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | General Knowledge Quiz Game - Home Page 9 | 10 | 11 | 12 | 14 | 15 | 16 | 17 | 26 | 27 | 28 | 29 |
    30 |
    31 |

    Are you Ready?

    32 |

    General Knowledge Quiz!

    33 | 34 | Play 35 | 36 | Topics 37 | 38 | High Scores 39 | 40 | Rules & Info 41 | 42 | Question Suggestion 43 | 44 |
    45 |
    46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /pages/highscores.html: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | High Scores 14 | 15 | 16 | 17 | 18 | 19 | 21 | 22 | 23 | 24 |
    25 |
    26 |

    Leaderboard

    27 |
      28 | Go Back to Main Quiz Menu 29 |
      30 |
      31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /pages/jaidenanimations/game.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | 14 | Quiz Page - Jaiden Animations 15 | 16 | 17 | 18 | 33 | 34 | 35 | 36 |
      37 |
      38 |
      39 |
      40 |

      Question

      41 |
      42 |
      43 |
      44 |
      45 |
      46 |

      Score

      47 |

      0

      48 |

      49 |

      -100

      50 |
      51 |
      52 |

      What is the answer to this question

      53 |
      54 |

      A

      55 |

      Choice

      56 |
      57 |
      58 |

      B

      59 |

      Choice 2

      60 |
      61 |
      62 |

      C

      63 |

      Choice 3

      64 |
      65 |
      66 |

      D

      67 |

      Choice 4

      68 |
      69 |
      70 |
      71 |
      72 | 75 | 76 | 89 |
      90 | 91 | 92 | 93 | -------------------------------------------------------------------------------- /pages/jaidenanimations/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Jaiden Animations Quiz Game - Home Page 11 | 12 | 13 | 15 | 16 | 17 | 18 | 27 | 28 | 29 | 30 |

      Are you Ready?

      31 |

      Jaiden Animations Quiz!

      32 | 33 |
      34 |
      35 | 36 | Play 37 | 38 | Topics 39 | 40 | High Scores 41 | 42 | Rules & Info 43 | 44 | Question Suggestion 45 |
      46 |
      47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /pages/kendall-quiz/game.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | 14 | Quiz Page - How Well Do You Know Kendall Quiz 15 | 16 | 17 | 18 | 19 | 34 | 35 | 36 | 37 |
      38 |
      39 |
      40 |
      41 |

      Question

      42 |
      43 |
      44 |
      45 |
      46 |
      47 |

      Score

      48 |

      0

      49 |

      50 |

      -100

      51 |
      52 |
      53 |

      What is the answer to this question

      54 |
      55 |

      A

      56 |

      Choice

      57 |
      58 |
      59 |

      B

      60 |

      Choice 2

      61 |
      62 |
      63 |

      C

      64 |

      Choice 3

      65 |
      66 |
      67 |

      D

      68 |

      Choice 4

      69 |
      70 |
      71 |
      72 |
      73 | 76 | 77 | 90 |
      91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /pages/kendall-quiz/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | How Well Do You Know Kendall Quiz Game - Home Page 11 | 12 | 13 | 15 | 16 | 17 | 18 | 27 | 28 | 29 | 30 |
      31 |
      32 |

      Are you Ready?

      33 |

      Kendall's Quiz!

      34 | 35 | Play 36 | 37 | Topics 38 | 39 | High Scores 40 | 41 | Rules & Info 42 | 43 | Question Suggestion 44 | 45 |
      46 |
      47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /pages/minecraft/game.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | 14 | Quiz Page - Minecraft 15 | 16 | 17 | 18 | 19 | 34 | 35 | 36 | 37 |
      38 |
      39 |
      40 |
      41 |

      Question

      42 |
      43 |
      44 |
      45 |
      46 |
      47 |

      Score

      48 |

      0

      49 |

      50 |

      -100

      51 |
      52 |
      53 |

      What is the answer to this question

      54 |
      55 |

      A

      56 |

      Choice

      57 |
      58 |
      59 |

      B

      60 |

      Choice 2

      61 |
      62 |
      63 |

      C

      64 |

      Choice 3

      65 |
      66 |
      67 |

      D

      68 |

      Choice 4

      69 |
      70 |
      71 |
      72 |
      73 | 76 | 77 | 90 |
      91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /pages/minecraft/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Minecraft Quiz Game - Home Page 11 | 12 | 13 | 15 | 16 | 17 | 18 | 27 | 28 | 29 | 30 |
      31 |
      32 |

      Are you Ready?

      33 |

      Minecraft Quiz!

      34 | 35 | Play 36 | 37 | Topics 38 | 39 | High Scores 40 | 41 | Rules & Info 42 | 43 | Question Suggestion 44 | 45 |
      46 |
      47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /pages/presidents/game.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | Quiz Page - Presidents 14 | 19 | 20 | 21 | 22 | 37 | 38 | 39 | 40 |
      41 |
      42 |
      43 |
      44 |

      Question

      45 |
      46 |
      47 |
      48 |
      49 |
      50 |

      Score

      51 |

      0

      52 |

      53 |

      -100

      54 |
      55 |
      56 |

      What is the answer to this question

      57 |
      58 |

      A

      59 |

      Choice

      60 |
      61 |
      62 |

      B

      63 |

      Choice 2

      64 |
      65 |
      66 |

      C

      67 |

      Choice 3

      68 |
      69 |
      70 |

      D

      71 |

      Choice 4

      72 |
      73 |
      74 |
      75 |
      76 | 79 | 80 | 93 |
      94 | 95 | 96 | 97 | -------------------------------------------------------------------------------- /pages/presidents/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | U.S Presidents Quiz Game - Home Page 10 | 11 | 12 | 13 | 15 | 16 | 17 | 18 | 27 | 28 | 29 | 30 |
      31 |
      32 |

      Are you Ready?

      33 |

      Presidents Quiz!

      34 | 35 | Play 36 | 37 | Topics 38 | 39 | High Scores 40 | 41 | Rules & Info 42 | 43 | Question Suggestion 44 | 45 | 46 |
      47 |
      48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /pages/programming_language/game.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | 14 | Quiz Page - Programming Language 15 | 16 | 17 | 18 | 33 | 34 | 35 | 36 |
      37 |
      38 |
      39 |
      40 |

      Question

      41 |
      42 |
      43 |
      44 |
      45 |
      46 |

      Score

      47 |

      0

      48 |

      49 |

      -100

      50 |
      51 |
      52 |

      What is the answer to this question

      53 |
      54 |

      A

      55 |

      Choice

      56 |
      57 |
      58 |

      B

      59 |

      Choice 2

      60 |
      61 |
      62 |

      C

      63 |

      Choice 3

      64 |
      65 |
      66 |

      D

      67 |

      Choice 4

      68 |
      69 |
      70 |
      71 |
      72 | 75 | 76 | 89 |
      90 | 91 | 92 | 93 | -------------------------------------------------------------------------------- /pages/programming_language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Programming Language Quiz Game - Home Page 11 | 12 | 13 | 15 | 16 | 17 | 18 | 27 | 28 | 29 | 30 |
      31 |
      32 |

      Are you Ready?

      33 |

      Programming Language Quiz!

      34 | 35 | Play 36 | 37 | Topics 38 | 39 | High Scores 40 | 41 | Rules & Info 42 | 43 | Question Suggestion 44 | 45 |
      46 |
      47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /pages/rating.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Rating Form 8 | 9 | 10 | 11 | 12 |
      13 |

      Rating Form for the Quiz

      14 |

      Please note - Entering an email is optional. However, we suggest providing your email so we can contact you regarding your quiz experience.

      15 |

      Writing a message is also optional. Feel free to share your experience of the quiz.

      16 |

      If you have found a glitch in our quiz, please report it via email to glitches@kendalldoescoding.gq. This form is not for reporting glitches.

      17 |

      RATING is required to be a number from 1 to 10.

      18 |
      19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 |
      28 |
      29 | 30 | 31 | -------------------------------------------------------------------------------- /pages/roblox/game.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | 14 | Quiz Page - Roblox 15 | 16 | 17 | 18 | 33 | 34 | 35 | 36 |
      37 |
      38 |
      39 |
      40 |

      Question

      41 |
      42 |
      43 |
      44 |
      45 |
      46 |

      Score

      47 |

      0

      48 |

      49 |

      -100

      50 |
      51 |
      52 |

      What is the answer to this question

      53 |
      54 |

      A

      55 |

      Choice

      56 |
      57 |
      58 |

      B

      59 |

      Choice 2

      60 |
      61 |
      62 |

      C

      63 |

      Choice 3

      64 |
      65 |
      66 |

      D

      67 |

      Choice 4

      68 |
      69 |
      70 |
      71 |
      72 | 75 | 76 | 89 |
      90 | 91 | 92 | 93 | -------------------------------------------------------------------------------- /pages/roblox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Roblox Quiz Game - Home Page 10 | 11 | 12 | 13 | 15 | 16 | 17 | 18 | 27 | 28 | 29 | 30 |
      31 |
      32 |

      Are you Ready?

      33 |

      Roblox Quiz!

      34 | 35 | Play 36 | 37 | Topics 38 | 39 | High Scores 40 | 41 | Rules & Info 42 | 43 | Question Suggestion 44 | 45 |
      46 |
      47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /pages/rules.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Rules 9 | 10 | 11 | 13 | 14 | 15 | 16 | 17 | 18 |
      19 |
      20 | 21 |

      Go back

      22 |
      23 | 24 |

      25 | Quiz Rules! 26 | 27 |

      28 | There are N questions in this quiz, For every right answer you get, you 29 | receive 100 points, for every wrong answer you get, you get -100 points. 30 |

      31 |

      32 | You can save you score to our website but for now, no-one else but you will 33 | be able to see the scores 34 |

      35 |

      36 | We are working on making it possible for anyone to be able to see your score 37 | so we can host competitions of this quiz. 38 |

      39 | 40 |

      41 | Info 42 |

      43 | Just a heads up, if your on mobile, you can open up Spotify, Apple Music 44 | or Youtube Music and not use our music section, because it will redirect 45 | you to the mobile app of Youtube and will not let you do the quiz with the 46 | music. 47 |

      48 | 49 |

      Thanks,

      50 |

      KendallDoesCoding

      51 | 52 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /pages/suggestion.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Question Suggestions 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
      14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /pages/tech/game.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | 14 | Quiz Page - Tech 15 | 16 | 17 | 18 | 33 | 34 | 35 | 36 |
      37 |
      38 |
      39 |
      40 |

      Question

      41 |
      42 |
      43 |
      44 |
      45 |
      46 |

      Score

      47 |

      0

      48 |

      49 |

      -100

      50 |
      51 |
      52 |

      What is the answer to this question

      53 |
      54 |

      A

      55 |

      Choice

      56 |
      57 |
      58 |

      B

      59 |

      Choice 2

      60 |
      61 |
      62 |

      C

      63 |

      Choice 3

      64 |
      65 |
      66 |

      D

      67 |

      Choice 4

      68 |
      69 |
      70 |
      71 |
      72 | 75 | 76 | 89 |
      90 | 91 | 92 | 93 | -------------------------------------------------------------------------------- /pages/tech/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Tech Quiz Game - Home Page 11 | 12 | 13 | 15 | 16 | 17 | 18 | 27 | 28 | 29 | 30 |

      Are you Ready?

      31 |

      Technology Quiz!

      32 | 33 |
      34 |
      35 | 36 | Play 37 | 38 | Topics 39 | 40 | High Scores 41 | 42 | Rules & Info 43 | 44 | Question Suggestion 45 |
      46 |
      47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /pages/theodd1sout/game.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | 14 | Quiz Page - TheOdd1sOut 15 | 16 | 17 | 18 | 33 | 34 | 35 | 36 |
      37 |
      38 |
      39 |
      40 |

      Question

      41 |
      42 |
      43 |
      44 |
      45 |
      46 |

      Score

      47 |

      0

      48 |

      49 |

      -100

      50 |
      51 |
      52 |

      What is the answer to this question

      53 |
      54 |

      A

      55 |

      Choice

      56 |
      57 |
      58 |

      B

      59 |

      Choice 2

      60 |
      61 |
      62 |

      C

      63 |

      Choice 3

      64 |
      65 |
      66 |

      D

      67 |

      Choice 4

      68 |
      69 |
      70 |
      71 |
      72 | 75 | 76 | 89 |
      90 | 91 | 92 | 93 | -------------------------------------------------------------------------------- /pages/theodd1sout/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | TheOdd1sOut Quiz Game - Home Page 11 | 12 | 13 | 15 | 16 | 17 | 18 | 27 | 28 | 29 | 30 |

      Are you Ready?

      31 |

      TheOdd1sOut Quiz!

      32 | 33 |
      34 |
      35 | 36 | Play 37 | 38 | Topics 39 | 40 | High Scores 41 | 42 | Rules & Info 43 | 44 | Question Suggestion 45 |
      46 |
      47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /pages/topics.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Quiz Topics 10 | 11 | 12 | 13 | 15 | 17 | 18 | 19 | 20 | 21 | 22 |
      23 |
      24 | 25 |

      Go back

      26 |
      27 |

      Quiz Topics

      28 |

      Many more quiz topics coming soon!

      29 |

      Select Your Category

      30 |
      31 | 32 |
      33 | 34 |
      35 | Technology 36 | 37 |
      38 | 45 | 46 |
      47 | Games 48 | 49 |
      50 | 55 | 56 |
      57 | Festivals 58 | 59 |
      60 | 65 | 66 |
      67 | General Knowledge 68 | 69 |
      70 | 75 |
      76 | YouTube 77 | 78 |
      79 | 84 |
      85 | Others 86 | 87 |
      88 | 94 |
      95 | 96 | 97 | 98 | -------------------------------------------------------------------------------- /pages/youtube/game.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | 14 | Quiz Page - YouTube 15 | 16 | 17 | 18 | 33 | 34 | 35 | 36 |
      37 |
      38 |
      39 |
      40 |

      Question

      41 |
      42 |
      43 |
      44 |
      45 |
      46 |

      Score

      47 |

      0

      48 |

      49 |

      -100

      50 |
      51 |
      52 |

      What is the answer to this question

      53 |
      54 |

      A

      55 |

      Choice

      56 |
      57 |
      58 |

      B

      59 |

      Choice 2

      60 |
      61 |
      62 |

      C

      63 |

      Choice 3

      64 |
      65 |
      66 |

      D

      67 |

      Choice 4

      68 |
      69 |
      70 |
      71 |
      72 | 75 | 76 | 89 |
      90 | 91 | 92 | 93 | -------------------------------------------------------------------------------- /pages/youtube/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | YouTube Quiz Game - Home Page 10 | 11 | 12 | 13 | 15 | 16 | 17 | 18 | 27 | 28 | 29 | 30 |
      31 |
      32 |

      Are you Ready?

      33 |

      YouTube Quiz!

      34 | 35 | Play 36 | 37 | Topics 38 | 39 | High Scores 40 | 41 | Rules & Info 42 | 43 | Question Suggestion 44 | 45 |
      46 |
      47 | 48 | 49 | 50 | --------------------------------------------------------------------------------