HTML W3Schools Test Prep Verified 2024
<a href="mailto:>
Send Mail</a> - ANSWER-Creates a link to a specific email
<meta> Tags - ANSWER-Define keywords for search engines:
<meta name="keywords" content="HTML, CSS, XML, XHTML, JavaScript">
Define a description of your web page:
<meta name="description" content="Free Web tutorials on HTML and CSS">
Define the author of a page:
<meta name="author" content="Hege Refsnes">
Refresh document every 30 seconds:
<meta http-equiv="refresh" content="30">
<title> - ANSWER-The <title> tag defines the title of the document.
The <title> element is required in all HTML/XHTML documents.
The <title> element:
defines a title in the browser toolbar
provides a title for the page when it is added to favorites
displays a title for the page in search-engine results
Are attributes case sensitive? - ANSWER-Attribute names and attribute values are not
case sensitive.
*However, the World Wide Web Consortium (W3C) recommends lowercase
attributes/attribute values in their HTML 4 recommendation.
Newer versions of (X)HTML will demand lowercase attributes.
Are HTML tags case sensitive? - ANSWER-HTML tags are not case sensitive: <P>
means the same as <p>. Many web sites use uppercase HTML tags.
*The World Wide Web Consortium (W3C) recommends lowercase in HTML 4, and
demands lowercase tags in XHTML.
How are attributes defined? - ANSWER-Attributes are defined in name/value pairs like:
name="value"
How are headings defined? - ANSWER-HTML headings are defined with the <h1> to
<h6> tags.
How are HTML links defined? - ANSWER-HTML links are defined with the <a> tag.
They commonly look like <a href="http://www.marketecture.com">This is a link</a>
How are images defined? - ANSWER-HTML images are defined with the <img> tag.
Example <img src="marketecture.jpg" width="104" height="142">
<a href="mailto:>
Send Mail</a> - ANSWER-Creates a link to a specific email
<meta> Tags - ANSWER-Define keywords for search engines:
<meta name="keywords" content="HTML, CSS, XML, XHTML, JavaScript">
Define a description of your web page:
<meta name="description" content="Free Web tutorials on HTML and CSS">
Define the author of a page:
<meta name="author" content="Hege Refsnes">
Refresh document every 30 seconds:
<meta http-equiv="refresh" content="30">
<title> - ANSWER-The <title> tag defines the title of the document.
The <title> element is required in all HTML/XHTML documents.
The <title> element:
defines a title in the browser toolbar
provides a title for the page when it is added to favorites
displays a title for the page in search-engine results
Are attributes case sensitive? - ANSWER-Attribute names and attribute values are not
case sensitive.
*However, the World Wide Web Consortium (W3C) recommends lowercase
attributes/attribute values in their HTML 4 recommendation.
Newer versions of (X)HTML will demand lowercase attributes.
Are HTML tags case sensitive? - ANSWER-HTML tags are not case sensitive: <P>
means the same as <p>. Many web sites use uppercase HTML tags.
*The World Wide Web Consortium (W3C) recommends lowercase in HTML 4, and
demands lowercase tags in XHTML.
How are attributes defined? - ANSWER-Attributes are defined in name/value pairs like:
name="value"
How are headings defined? - ANSWER-HTML headings are defined with the <h1> to
<h6> tags.
How are HTML links defined? - ANSWER-HTML links are defined with the <a> tag.
They commonly look like <a href="http://www.marketecture.com">This is a link</a>
How are images defined? - ANSWER-HTML images are defined with the <img> tag.
Example <img src="marketecture.jpg" width="104" height="142">