This timed code quiz features multiple-choice questions about javascript. If answered incorrectly, time is deducted.
Deployed app: https://hilbug.github.io/04-code-quiz/
Technologies used are: HTML, CSS, Javascript
Contact: hil.ferraro@gmail.com
AS A coding bootcamp student
I WANT to take a timed quiz on JavaScript fundamentals that stores high scores
SO THAT I can gauge my progress compared to my peers
GIVEN I am taking a code quiz
WHEN I click the start button
THEN a timer starts and I am presented with a question
WHEN I answer a question
THEN I am presented with another question
WHEN I answer a question incorrectly
THEN time is subtracted from the clock
WHEN all questions are answered or the timer reaches 0
THEN the game is over
WHEN the game is over
THEN I can save my initials and score
- Many thanks to study group/TA/tutor for helping me with my setQuestion and local storage!
- Background image from: https://unsplash.com/@markusspiske
- Sticky footer user flexbox from: https://css-tricks.com/couple-takes-sticky-footer/
- CSS media query suggestions from: https://web.dev/optimize-css-background-images-with-media-queries/
- The javascript questions were taken from the example provided.