Quiz

  1. can you explain this quiz question:

    To present the user with a set of mutually exclusive options, use (choose all that apply):

     A. MENU    
     B. SELECT  
     C. radio buttons   
     D. a choice set
    

    Sure. SELECT is a tag you can use to make a dropdown menu, or you can use radio buttons:

    Operating System:

  2. What is the difference between a name and an ID?

    Forms are submitted with name/value pairs.

    IDs uniquely identify elements.

    In the example form above, name="os" is not unique

  3. Can you go over the function of the label? Thank you!

    As in the example above, it associates some text with a widget, like the radio buttons.

  4. When using the label tags , what exactly does the 'type' do?

    There is no type for a label. The input tag has a type attribute.

  5. What is the purpose of the <button> tag, and how does it differ from the <input> tag for buttons?

    
        <input type="submit" value="send data">
        <button>some text or even an image</button>
    
    

    The original was input, but people wanted to turn images and such into buttons so the button tag was added.

  6. There is nothing else I would like to talk about. / Nothing, it was pretty clear! / the readings made sense

    Great!