A timed quiz on JavaScript fundamentals that stores high scores using local storage. This is homework assignment 4 for UWBoot Camp.
To access the quiz, use this link: https://mike-c-sanders.github.io/CodeQuiz/
README.md - primary Readme file
index.html - primary html file
CSS - Folder holding the style sheet
* Style.css - style sheet
JS - Folder holding all javascript files
* Questions.js - location where questions are stored
* Quiz.js - primary script file
Images - Folder holding images
* Startquiz - image of the home screen
* Highscores - image of the highscores page
* Questions - image of an example question
* Submitscore - Image of submitting a score
- The user begins the quiz by clicking the start quiz button. This initiates the timer to count down from 75.
- Questions are displayed in the main section box, where the user will select an option. That option is evaluated as either correct or incorrect.
- Once the questions have been answered or the timer counts down to 0, the score submission page is viewable.
- After the user submits their score and initals. All high scores are displayed using local storage.