What year was HTML standardized?
1995
What practice makes a site functional for all types of devices and all users, including those with disabilities?
Accessibility
What is the tag for an unordered list?
<ul>
What tag creates a form element?
form
Which path includes the resource's entire domain name?
absolute
What was the stricter version of HTML 4.01 named?
XHTML
What tag defines a unit of content?
<section>
What does the <dt> tag stand for?
description term
What are the two form methods given in the lesson?
GET and POST
Which pathway is easier to deal with when developing a site because it will not "break" if a file is moved?
Relative Pathway
What organization was created because the developers thought the W3C standards where not addressing future trends in web development?
Web Hypertext Application Technology Working Group (WHATWG)
What is the largest of the heading tags?
<h1>
What is the difference between <td> and <th>?
<td> - table data
<th> - table header
Which form method has a limit on the URLs length?
GET
Which target attribute value will cause a link to load in a different window?
_blank
What is an HTML document that obeys the rules of a specified HTML standard?
Conforming
True or false: The following code is missing an ending tag: <img src="https://www.example.com/images/snapshot.jpg" alt="My Photo">
False - <img> tags are empty tags.
What tag/element allocates two rows for one cell?
rowspan
What is the following code:
HTTP/2.0 404 Not Found
Response Code 404
If there is no enclosed context frame or window in the current context what will the _parent value work as/like?
_self value
Which element/tag is the root element that wraps around everything except the doctype?
<html>
What gives text that will display in place of the image in case of browsers that don't handle images?
attribute (alt)
What is the element and value that will cause a cell to have two columns?
colspan="2"
What tag creates a box where the user can enter multiple lines of text?
<textarea>
What goes inside of the <head> tag and supplies information about the HTML document?
Meta tags