Quarter 2

Cards (25)

  • What are forms?

    Allows users to input information using various input fields, such as text fields, checkboxes, radio buttons, and menus.
  • What are frames?

    Displays multiple HTML documents in the same browser window.
  • What is the HTML <input> element?

    It is the most used in form element. The element can be displayed in many ways, depending on the type attribute.
  • What are some types of <input> elements?

    Text, radio, checkbox, submit, and button
  • What is a collection of frames in the browser window called?
    Frameset
  • What is hyperlink?

    A direct reference within a hypertext document.
  • What is the area from which the hyperlink can be activated?

    Anchor
  • What does the link point to? It may be another location within the same page or document, another page, or a specific location.
    Target
  • What are the types of links?
    Embedded, inline, random-accessed, and hardware-accessed
  • What is an embedded link?

    Allows following through links using a code. Choosing the particular link will load in a corresponding page.
  • What is an inline link?

    Displays remote content without the need for embeds on the content.
  • What is random-accessed link?

    Links retrieved from a database or variable containers in a program when the retrieval function is from user interaction or non interactive process.
  • What is hardware-accessed link?

    Link that activates directly via an input device without the need or use of a graphical user interface.
  • What is an anchor?

    The origin or the target end of a hyperlink.
  • What does "href" mean?

    Hypertext reference. It defines the link address.
  • What is target?

    Defines where the linked document will be opened.
  • What are the values of target?
    blank, _self, _parent, _top, and name
  • What is blank?
    Values that are used to open the target URL on a new window.
  • What is _self?
    Values used to open the target URL in the same frame as it was clicked.
  • What is _parent?
    Values that are used to open the target URL in the parent frameset.
  • What is _top?
    The values used to open the target URL in the full body of the window.
  • What is name?
    Values that defines an internal bookmark of the page. This is for linking to a specific part of the page.
  • What is the HTML anchor element or <a>?
    Used to define both hyperlinks and anchors.
  • What is noresize?
    Not letting the frames be resized by the visitor.
  • What is a webform?
    On a web page allows the user to enter data that is sent to a server for processing.