Skip to content

Latest commit

 

History

History
67 lines (35 loc) · 1.93 KB

File metadata and controls

67 lines (35 loc) · 1.93 KB
  • assignment 1

    • What is the appropriate element to put in side the form to send data when clicking on it?

      Answer ==> input type submit

    • What is the appropriate element for a full page title?

      Answer ==> h1

    • What is the appropriate element to be the title of a section within the page?

      Answer ==> h2

    • What is the appropriate element to contain a paragraph of text?

      Answer ==> p

    • How do you specify the content language for your page? You can type the complete element with Attributes for specifying the language

      Answer ==>

      <html lang="en">
    • In the world of accessibility, is it better to write 10-20 or 10 To 20?

      Answer ==> 10 To 20

    • If you have a Div element and want to access it by pressing the Tab button, what will you do with the element?

      Answer ==> Add the tabindex attribute

    • What does ARIA mean?

      Answer ==> Accessible Rich Internet Applications

  • assignment 2