More HTML

12345678910111213141516171819202122232425262728293031
Across
  1. 7. "Allows users to check, or select, a value, many values, or no value at all."
  2. 11. Indicates the URL where the form data should be sent.
  3. 14. An HTML5 element that displays a video in a web page.
  4. 15. Allows the web page to introduce presentational directives, usually CSS.
  5. 17. Any part of a web document body that has opening and closing tags.
  6. 18. An interactive component (usually graphical) that the browser uses to interact with a user.
  7. 21. The generic element for creating inline containers to facilitate managing content on the page.
  8. 24. Allows users to select one of several predefined values. Requires <option>...</option> elements for each predefined value.
  9. 25. Used to give a widget a unique identifier.
  10. 26. HTML5 element that plays an audio file in a web page.
  11. 27. Used with a value of "multipart/form-data" indicates the web browser should split a POST request into multiple parts, where each input field is sent as a separate part of the HTTP request message.
  12. 28. Names the widget and sends the widget's value when the widget's form is submitted.
  13. 30. An element that fills the width of the element's parent container and can contain other block elements, inline elements, and text.
  14. 31. An attribute that is true when present and false when absent.
Down
  1. 1. A mechanism that allows a web page element to function correctly even if the browser does not support a particular element.
  2. 2. A technique used by a web browser to submit information to a web server by altering the URL of the HTTP request.
  3. 3. Allows a web page to be embedded in a rectangular area of the current web page.
  4. 4. "Specifies text that first appears in a text widget, typically for giving the user a hint as to the expected value."
  5. 5. A widget for input elements with the type attribute of "radio", which allows users to select exactly one value from possibly many values.
  6. 6. A fallback using JavaScript code that makes certain HTML features work on browsers that do not natively support those features.
  7. 8. A technique used by a web browser to submit information to a web server by sending the information in the HTTP request body.
  8. 9. Specifies a default value for a widget.
  9. 10. Displays descriptive text associated with a specific widget.
  10. 12. A widget specified by opening and closing tags that allows users to enter multiple lines of text.
  11. 13. A generic element for creating block containers to facilitate managing page content and is the only block element with no semantic meaning.
  12. 16. Indicates the HTTP request type the browser will use to communicate with the server.
  13. 19. Groups related form widgets together and draws a box around the related widgets. The <legend>...</legend> element defines a caption for a fieldset.
  14. 20. Indicates the widget type
  15. 22. An HTML element that fills the minimum space possible in the element's parent container and can only text or other inline elements.
  16. 23. Allows the web browser to submit information form the user to the server.
  17. 29. Allows a web page to include executable code, which the browser assumes to be JavaScript unless indicated otherwise.