Interactive Quiz in JavaScript

Your assignment is to create an interactive quiz web-site. 
Choose an interesting topic, where it is possible to create numerous questions.

Each web-page should contain one question, with several graphical elements.
These could be pictures, animations, slide-shows, movies, etc.

Each page must be interactive - that means the user clicks on something
or moves the mouse over something to answer a question or to see more information.

You can make some pages similar to others - for example 2 multiple choice pages -
but you must also produce other types of pages.  Here are a few examples:

  Multiple Choice   Churchill Quiz   Rollover Pictures    Math Problem with Input Boxes


Embedding a Video

Watch this video.  Then click  and answer the questions.




(1) To EMBED a video
     - Find a YouTube video
     - click on [Share], then [Embed]
     - copy the Embed code and paste it into your web-page

(2)  Here is the JavaScript for the questions Button:

      function shapeQuestions()
        {
           tri = prompt("What color was the TRIANGLE?")
           if( tri == "yellow" || tri == "gold" )
           {
              alert("Correct!")
               
              sq = prompt("What color was the SQUARE?").toUpperCase()
              if(sq == "BLUE")
              {
                 alert("Correct! Now watch a better video")
                   location = "http://www.youtube.com/watch?v=k2vkwy2vdP4"
                  
              }
              else
              {  alert("Wrong, try again") }
               
           }
           else
           {
              alert("Wrong, try again")
           }       
         
        }


Daily Goals

Each day the teacher will demonstrate another JavaScript technique.
You should plan to add at least one question page each day.
You probably also need to do some at home.

Long Term Goal

You must produce a cohesive, interesting set of quiz pages. 
You must turn in your web-site on

Due Date : Monday 4 March.