Quiz

  1. Do we have to put the values of type in quotes? ex. type="time" or type=time

    No, but it's often a good idea.

  2. "why some label tag have for attribute but some not? There is a for attribute in
        <label for="coffeeOrder">Coffee Order</label>
    

    , but not in the:

        <label>
                    <input type="radio" name="size" value="short">
                    Short
    </label>"
    

    Because there are two ways to label things: structural (the latter) and with for and id (the former).

  3. A little bit confused about what choice set means. Can you please explain it in the context of radio buttons?

    Choice set does not exist.

  4. What's the difference between menu and select in question 4?

    menu doesn't exist