• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/224

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

224 Cards in this Set

  • Front
  • Back
What is the only <!doctype> declaration in html5?
In HTML5 there is only one <!doctype> declaration:
<!DOCTYPE html>`
How many tags are required for a minimum HTML5 document?
5 (!doctype, html, head, title, body)`
Name the 12 HTML 4.01 elements that were removed from HTML5.
<acronym>
<applet>
<basefont>
<big>
<center>
<dir>
<font>
<frame>
<frameset>
<noframes>
<strike>
<tt>`
<a>
defines a hyperlink, which is used to link from one page to another.
The most important attribute of the <a> element is the href attribute, which indicates the link’s destination.
The most important attribute of the <a> element is the href attribute, which indicates the link’s destination.
With the <a> tag, a linked page is normally displayed in the current browser window, unless you specify another target.
With the <a> tag, a linked page is normally displayed in the current browser window, unless you specify another target.
<a> specific attributes include:
<a> specific attributes include:
(1) href
(2)hreflan
(3)media
(4)rel
(5)target
(6)type
The {blank} attribute of the <a> tag specifies the URL of the page the link goes to
The _href_ attribute of the <a> tag specifies the URL of the page the link goes to
The {blank} attribute of the <a> tag specifies the langauge of the linked document.
The _hreflang_ attribute of the <a> tag specifies the langauge of the linked document.
The href attribute of the <a> tag specifies what?
The href attribute of the <a> tag specifies the URL of the page the link goes to
The hreflang attribute of the <a> tag specifies what?
The hreflang attribute of the <a> tag specifies the langauge of the linked document.
The {blank} attribute of the <a> tag specifies what media/device the linked document is optimized for
The _media_ attribute of the <a> tag specifies what media/device the linked document is optimized for
The media attribute of the <a> tag specifies what?
The media attribute of the <a> tag specifies what media/device the linked document is optimized for
The {blank} attribute of the <a> tag specifies the relationship between the current document and the linked document
The _rel_ attribute of the <a> tag specifies the relationship between the current document and the linked document
The rel attribute of the <a> tag specifies what?
The rel attribute of the <a> tag specifies the relationship between the current document and the linked document
Defines a hyperlink, which is used to link from one page to another.
<a>
The 12 possible values of the rel attribute of the <a> tag are:
The 12 possible values of the rel attribute of the <a> tag are:
1) alternate
2) author
3) bookmark
4) help
5) license
6) next
7) nofollow
8) noreferrer
9) prefetch
10) prev
11) search
12) tag
The target attribute of the <a> tag specifies what?
The target attribute of the <a> tag specifies where to open the linked document.
The {blank} attribute of the <a> tag specifies where to open the linked document.
The _target_ attribute of the <a> tag specifies where to open the linked document.
The 5 possible values for the target attribute of the <a> tag are:
The 5 possible values for the target attribute of the <a> tag are:
1) _blank - Opens the linked document in a new window or tab.
2) _self - Opens the linked document in the same frame as it was clicked (this is default)
3) _parent - Opens the linked document in the parent frame
4) _top - Opens the linked document in the full body of the window
5) framename - Opens the linked document in a named frame.
The {blank} attribute of the <a> tag specifies the MIME type of the linked document
The _type_ attribute of the <a> tag specifies the MIME type of the linked document
The type attribute of the <a> tag specifies what?
The type attribute of the <a> tag specifies the MIME type of the linked document
The {blank} tag indicates an abbreviation or an acronym, like "WWW" or "NATO".
The <abbr> tag indicates an abbreviation or an acronym, like "WWW" or "NATO".
The <abbr> tag indicates what?
The <abbr> tag indicates an abbreviation or an acronym, like "WWW" or "NATO".
The global {Blank} attribute can be used in the <abbr> tag to show the full version of the abbreviation/acronym when you mouse over the <abbr> element.
The global _title_ attribute can be used in the <abbr> tag to show the full version of the abbreviation/acronym when you mouse over the <abbr> element.
The {Blank} tag defines the contact information for the author/owner of a document or an article.
The _<address>_ tag defines the contact information for the author/owner of a document or an article.
The <address> tag defines what?
The <address> tag defines the contact information for the author/owner of a document or an article.
The {Blank} tag defines an area inside an image-map (an image-map is an image with clickable areas).
The _area_ tag defines an area inside an image-map (an image-map is an image with clickable areas).
The <area> tag defines what?
The <area> tag defines an area inside an image-map (an image-map is an image with clickable areas).
The <area> element is always nested inside a {Blank} tag.
The <area> element is always nested inside a <map> tag.
The alt attribute of the <area> tag specifies an alternate text for the area. Required if the href attribute is present
The alt attribute of the <area> tag specifies an alternate text for the area. Required if the href attribute is present
The {Blank} attribute of the <area> tag specifies the coordinates of the area
The coords attribute of the <area> tag specifies the coordinates of the area
The coords attribute of the <area> tag specifies what?
The coords attribute of the <area> tag specifies the coordinates of the area
The {Blank} attribute of the <area> tag is required if the href attribute is present.
The alt attribute of the <area> tag is required if the href attribute is present.
The {Blank} attribute of the <area> tag specifies the hyperlink target for the area
The href attribute of the <area> tag specifies the hyperlink target for the area
The {Blank} attribute of the <area> tag specifies the relationship between the current document and the target URL
The rel attribute of the <area> tag specifies the relationship between the current document and the target URL
The {Blank} attribute of the <area> tag specifies the shape of the area
The shape attribute of the <area> tag specifies the shape of the area
The shape attribute of the <area> tag specifies what?
The shape attribute of the <area> tag specifies the shape of the area
The {Blank} attribute of the <area> tag specifies where to open the target URL
The target attribute of the <area> tag specifies where to open the target URL
The {Blank} attribute of the <area> tag specifies the MIME type of the target URL
The type attribute of the <area> tag specifies the MIME type of the target URL
The type attribute of the <area> tag specifies what?
The type attribute of the <area> tag specifies the MIME type of the target URL
The {Blank} tag specifies independent, self-contained content.
The <article> tag specifies independent, self-contained content.
The <article> tag specifies what?
The <article> tag specifies independent, self-contained content.
Potential sources for the {Blank} element include:
1. Forum post
2. Blog post
3. News story
4. Comment
Potential sources for the <article> element include:
1. Forum post
2. Blog post
3. News story
4. Comment
<{Blank} href="http://www.w3schools.com">Visit W3Schools.com!</{Blank}>
<a href="http://www.w3schools.com">Visit W3Schools.com!</a>
The <{Blank} title="World Health Organization">WHO</{Blank}> was founded in 1948.
The <abbr title="World Health Organization">WHO</abbr> was founded in 1948.
<{Blank}>
Written by <a href="mailto:webmaster@example.com">Jon Doe</a>.<br>
Visit us at:<br>
Example.com<br>
Box 564, Disneyland<br>
USA </{Blank}>
<address>
Written by <a href="mailto:webmaster@example.com">Jon Doe</a>.<br>
Visit us at:<br>
Example.com<br>
Box 564, Disneyland<br>
USA </address>
<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">
<map name="planetmap">
<{Blank} shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun">
<{Blank} shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury">
<{Blank} shape="circle" coords="124,58,8" href="venus.htm" alt="Venus">
</map>
<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">
<map name="planetmap">
<area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun">
<area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury">
<area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus">
</map>
<{Blank}>
<h1>Internet Explorer 9</h1>
<p>Windows Internet Explorer 9 (abbreviated as IE9) was released to the public on March 14, 2011 at 21:00 PDT.....</p>
</{Blank}>
<article>
<h1>Internet Explorer 9</h1>
<p>Windows Internet Explorer 9 (abbreviated as IE9) was released to the public on March 14, 2011 at 21:00 PDT.....</p>
</article>
The {Blank} tag defines some content aside from the content it is placed in.
The <aside> tag defines some content aside from the content it is placed in.
The <aside> tag defines what?
The <aside> tag defines some content aside from the content it is placed in.
The {Blank} tag content could be placed as a sidebar in an article.
The <aside> content could be placed as a sidebar in an article.
List the <abbr> specific attributes.
There are none
List the <address> specific attributes.
There are none
List the <area> specific attributes.
The <area> specific attributes are:
1. alt
2. coords
3. href
4. hreflang
5. media
6. rel
7. shape
8. target
9. type
List the <article> specific attributes.
There are none
List the <aside> specific attributes.
There are none.
<p>
My family and I visited The Epcot center this summer.
</p>
dfas
<{Blank}>
<h4>Epcot Center</h4>
<p>The Epcot Center is a theme park in Disney World, Florida.</p>
</{Blank}>
<p>
My family and I visited The Epcot center this summer.
</p>
<aside>
<h4>Epcot Center</h4>
<p>The Epcot Center is a theme park in Disney World, Florida.</p>
</aside>
afdf
The {Blank} tag defines sound, such as music or other audio streams.
The <audio> tag defines sound, such as music or other audio streams.
The <audio> tag defines what?
The <audio> tag defines sound, such as music or other audio streams.
Any text inside the between <{Blank}> and </{Blank}> will be displayed in browsers that do not support the <{Blank}> tag.
Any text inside the between <audio> and </audio> will be displayed in browsers that do not support the <audio> tag.
List the attributes specific to the <audio> tag.
The attributes specific to the <audio> tag are:
1. autoplay
2. controls
3. loop
4. muted
5. src
What does the <audio> autoplay attribute do?
Specifies that the audio will start playing as soon as it is ready
What does the <audio> controls attribute do?
Specifies that audio controls should be displayed (such as a play/pause button etc).
What does the <audio> loop attribute do?
Specifies that the audio will start over again, every time it is finished
What does the <audio> muted attribute do?
Specifies that the audio output should be muted
What does the <audio> src attribute do?
Specifies the URL of the audio file
What does the <audio> preload attribute do?
Specifies if and how the author thinks the audio should be loaded when the page loads
What are the possible values of the <audio> preload attribute?
auto : The author thinks that the browser should load the entire audio file when the page loads
metadata: The author thinks that the browser should load only metadata when the page loads
fadfasdf
none: The author thinks that the browser should NOT load the audio file when the page loads
adsfasdf
<{Blank} controls preload="none">
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
Your browser does not support the {Blank} element.
</{Blank}>
<audio controls preload="none">
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
The <{Blank}> tag specifies bold text.
The <b> tag specifies bold text.
The <b> tag specifies what?
The <b> tag specifies bold text.
According to the HTML 5 specification, the <{Blank}> tag should be used as a LAST resort when no other tag is more appropriate.
According to the HTML 5 specification, the <b> tag should be used as a LAST resort when no other tag is more appropriate.
An alternative to the <b> tag is to use what?
You can also use the CSS "font-weight" property to set bold text.
What attributes are specific to the <b> tag?
There are none.
<p>This is normal text - <{Blank}>and this is bold text</{Blank}>.</p>
<p>This is normal text - <b>and this is bold text</b>.</p>
The <{Blank}> tag specifies the base URL/target for all relative URLs in a document.
The <base> tag specifies the base URL/target for all relative URLs in a document.
The <base> tag specifies what?
The <base> tag specifies the base URL/target for all relative URLs in a document.
There can be at maximum one <{Blank}> element in a document, and it must be inside the <head> element.
There can be at maximum one <base> element in a document, and it must be inside the <head> element.
Put the <{Blank}> tag as the first element inside the <head> element, so that other elements in the head section uses the information from the <{Blank}> element.
Put the <base> tag as the first element inside the <head> element, so that other elements in the head section uses the information from the <base> element.
If the <base> tag is present, it must have either an {Blank} attribute or a {Blank} attribute, or both.
If the <base> tag is present, it must have either an href attribute or a target attribute, or both.
<head>
<{Blank} href="http://www.w3schools.com/images/" target="_blank">
</head>
fasdfas
<body>
<img src="stickman.gif" width="24" height="39" alt="Stickman">
<a href="http://www.w3schools.com">W3Schools</a>
</body>
<head>
<base href="http://www.w3schools.com/images/" target="_blank">
</head>
<body>
<img src="stickman.gif" width="24" height="39" alt="Stickman">
<a href="http://www.w3schools.com">W3Schools</a>
</body>
asdfasdf
What are the specific attributes of the <base> tag?
The specific attributes of the <base> tag are:
1. href
2. target
What does the href attribute of the <base> tag do?
The href attribute of the <base> tag specifies the base URL for all relative URLs in the page
What does the target attribute of the <base> tag do?
The target attribute of the <base> tag specifies the default target for all hyperlinks and forms in the page
What are the 5 possible values for the target attribute of the <base> tag?
The 5 possible values for the target attribute of the <base> tag are:
1) _blank - Opens the linked document in a new window or tab.
2) _self - Opens the linked document in the same frame as it was clicked (this is default)
3) _parent - Opens the linked document in the parent frame
4) _top - Opens the linked document in the full body of the window
5) framename - Opens the linked document in a named frame.
The <{Blank}> tag isolates a part of text that might be formatted in a different direction from other text outside it.
The <bdi> tag isolates a part of text that might be formatted in a different direction from other text outside it.
The <bdi> tag does what?
The <bdi> tag isolates a part of text that might be formatted in a different direction from other text outside it.
bdi stands for what?
bdi stands for Bi-directional Isolation.
The <{Blank}> tag is useful when embedding user-generated content with an unknown directionality.
The <bdi> tag is useful when embedding user-generated content with an unknown directionality.
<ul>
<li>User <{Blank}>hrefs</{Blank}>: 60 points</li>
<li>User <{Blank}>jdoe</{Blank}>: 80 points</li>
<li>User <{Blank}>إيان</{Blank}>: 90 points</li>
</ul>
<ul>
<li>User <bdi>hrefs</bdi>: 60 points</li>
<li>User <bdi>jdoe</bdi>: 80 points</li>
<li>User <bdi>إيان</bdi>: 90 points</li>
</ul>
What are the specific attributes of the <bdi> tag?
There are none
The <{Blank}> tag is used to override the current text direction.
The <bdo> tag is used to override the current text direction.
The <bdo> tag is used for what?
The <bdo> tag is used to override the current text direction.
bdo stands for what?
bdo stands for Bi-Directional Override.
What are the specific attributes of the <bdo> tag?
The specific attributes of the <bdo> tag are as follows:
1. dir - The required dir attribute specifies the text direction of the text inside a <bdo> element
List the possible values of the dir attribute of the <bdo> tag
The possible values of the dir attribute of the <bdo> tag are:
1. ltr: Left-to-right text direction
2. rtl: Right-to-left text direction
The <{Blank}> tag specifies a section that is quoted from another source.
The <blockquote> tag specifies a section that is quoted from another source.
The <blockquote> tag specifies what?
The <blockquote> tag specifies a section that is quoted from another source.
Browsers usually {Blank} <blockquote> elements.
Browsers usually indent <blockquote> elements.
List the attributes specific to the <blockquote> tag.
The attributes specific to the <blockquote> tag are:
1. cite
What does the cite attribute of the <blockquote> tag do?
Specifies the source of the quotation
What is the data type of the cite attribute of the <blockquote> tag?
The data type of the cite attribute of the <blockquote> tag is a URL
The <{Blank}> element contains all the contents of an HTML document, such as text, hyperlinks, images, tables, lists, etc.
The <body> element contains all the contents of an HTML document, such as text, hyperlinks, images, tables, lists, etc.
The <body> element contains what?
The <body> element contains all the contents of an HTML document, such as text, hyperlinks, images, tables, lists, etc.
List the <body> tag specific attributes.
There are none. However in HTML 4, there were several layout attributes that have been deprecated.
<html>
<head>
<title>Title of the document</title>
</head>
fasdfas
<{Blank}>
The content of the document......
</{Blank}>
asdfasdf
</html>
<html>
<head>
<title>Title of the document</title>
</head>
<body>
The content of the document......
</body>
asdfasdf
</html>
asdfasdf
What is the only <!doctype> declaration in html5?
In HTML5 there is only one <!doctype> declaration:
<!DOCTYPE html>`
How many tags are required for a minimum HTML5 document?
5 (!doctype, html, head, title, body)`
Name the 12 HTML 4.01 elements that were removed from HTML5.
<acronym>
<applet>
<basefont>
<big>
<center>
<dir>
<font>
<frame>
<frameset>
<noframes>
<strike>
<tt>`
<a>
defines a hyperlink, which is used to link from one page to another.
The most important attribute of the <a> element is the href attribute, which indicates the link’s destination.
The most important attribute of the <a> element is the href attribute, which indicates the link’s destination.
With the <a> tag, a linked page is normally displayed in the current browser window, unless you specify another target.
With the <a> tag, a linked page is normally displayed in the current browser window, unless you specify another target.
<a> specific attributes include:
<a> specific attributes include:
(1) href
(2)hreflan
(3)media
(4)rel
(5)target
(6)type
The {blank} attribute of the <a> tag specifies the URL of the page the link goes to
The _href_ attribute of the <a> tag specifies the URL of the page the link goes to
The {blank} attribute of the <a> tag specifies the langauge of the linked document.
The _hreflang_ attribute of the <a> tag specifies the langauge of the linked document.
The href attribute of the <a> tag specifies what?
The href attribute of the <a> tag specifies the URL of the page the link goes to
The hreflang attribute of the <a> tag specifies what?
The hreflang attribute of the <a> tag specifies the langauge of the linked document.
The {blank} attribute of the <a> tag specifies what media/device the linked document is optimized for
The _media_ attribute of the <a> tag specifies what media/device the linked document is optimized for
The media attribute of the <a> tag specifies what?
The media attribute of the <a> tag specifies what media/device the linked document is optimized for
The {blank} attribute of the <a> tag specifies the relationship between the current document and the linked document
The _rel_ attribute of the <a> tag specifies the relationship between the current document and the linked document
The rel attribute of the <a> tag specifies what?
The rel attribute of the <a> tag specifies the relationship between the current document and the linked document
Defines a hyperlink, which is used to link from one page to another.
<a>
The 12 possible values of the rel attribute of the <a> tag are:
The 12 possible values of the rel attribute of the <a> tag are:
1) alternate
2) author
3) bookmark
4) help
5) license
6) next
7) nofollow
8) noreferrer
9) prefetch
10) prev
11) search
12) tag
The target attribute of the <a> tag specifies what?
The target attribute of the <a> tag specifies where to open the linked document.
The {blank} attribute of the <a> tag specifies where to open the linked document.
The _target_ attribute of the <a> tag specifies where to open the linked document.
The 5 possible values for the target attribute of the <a> tag are:
The 5 possible values for the target attribute of the <a> tag are:
1) _blank - Opens the linked document in a new window or tab.
2) _self - Opens the linked document in the same frame as it was clicked (this is default)
3) _parent - Opens the linked document in the parent frame
4) _top - Opens the linked document in the full body of the window
5) framename - Opens the linked document in a named frame.
The {blank} attribute of the <a> tag specifies the MIME type of the linked document
The _type_ attribute of the <a> tag specifies the MIME type of the linked document
The type attribute of the <a> tag specifies what?
The type attribute of the <a> tag specifies the MIME type of the linked document
The {blank} tag indicates an abbreviation or an acronym, like "WWW" or "NATO".
The <abbr> tag indicates an abbreviation or an acronym, like "WWW" or "NATO".
The <abbr> tag indicates what?
The <abbr> tag indicates an abbreviation or an acronym, like "WWW" or "NATO".
The global {Blank} attribute can be used in the <abbr> tag to show the full version of the abbreviation/acronym when you mouse over the <abbr> element.
The global _title_ attribute can be used in the <abbr> tag to show the full version of the abbreviation/acronym when you mouse over the <abbr> element.
The {Blank} tag defines the contact information for the author/owner of a document or an article.
The _<address>_ tag defines the contact information for the author/owner of a document or an article.
The <address> tag defines what?
The <address> tag defines the contact information for the author/owner of a document or an article.
The {Blank} tag defines an area inside an image-map (an image-map is an image with clickable areas).
The _area_ tag defines an area inside an image-map (an image-map is an image with clickable areas).
The <area> tag defines what?
The <area> tag defines an area inside an image-map (an image-map is an image with clickable areas).
The <area> element is always nested inside a {Blank} tag.
The <area> element is always nested inside a <map> tag.
The alt attribute of the <area> tag specifies an alternate text for the area. Required if the href attribute is present
The alt attribute of the <area> tag specifies an alternate text for the area. Required if the href attribute is present
The {Blank} attribute of the <area> tag specifies the coordinates of the area
The coords attribute of the <area> tag specifies the coordinates of the area
The coords attribute of the <area> tag specifies what?
The coords attribute of the <area> tag specifies the coordinates of the area
The {Blank} attribute of the <area> tag is required if the href attribute is present.
The alt attribute of the <area> tag is required if the href attribute is present.
The {Blank} attribute of the <area> tag specifies the hyperlink target for the area
The href attribute of the <area> tag specifies the hyperlink target for the area
The {Blank} attribute of the <area> tag specifies the relationship between the current document and the target URL
The rel attribute of the <area> tag specifies the relationship between the current document and the target URL
The {Blank} attribute of the <area> tag specifies the shape of the area
The shape attribute of the <area> tag specifies the shape of the area
The shape attribute of the <area> tag specifies what?
The shape attribute of the <area> tag specifies the shape of the area
The {Blank} attribute of the <area> tag specifies where to open the target URL
The target attribute of the <area> tag specifies where to open the target URL
The {Blank} attribute of the <area> tag specifies the MIME type of the target URL
The type attribute of the <area> tag specifies the MIME type of the target URL
The type attribute of the <area> tag specifies what?
The type attribute of the <area> tag specifies the MIME type of the target URL
The {Blank} tag specifies independent, self-contained content.
The <article> tag specifies independent, self-contained content.
The <article> tag specifies what?
The <article> tag specifies independent, self-contained content.
Potential sources for the {Blank} element include:
1. Forum post
2. Blog post
3. News story
4. Comment
Potential sources for the <article> element include:
1. Forum post
2. Blog post
3. News story
4. Comment
<{Blank} href="http://www.w3schools.com">Visit W3Schools.com!</{Blank}>
<a href="http://www.w3schools.com">Visit W3Schools.com!</a>
The <{Blank} title="World Health Organization">WHO</{Blank}> was founded in 1948.
The <abbr title="World Health Organization">WHO</abbr> was founded in 1948.
<{Blank}>
Written by <a href="mailto:webmaster@example.com">Jon Doe</a>.<br>
Visit us at:<br>
Example.com<br>
Box 564, Disneyland<br>
USA </{Blank}>
<address>
Written by <a href="mailto:webmaster@example.com">Jon Doe</a>.<br>
Visit us at:<br>
Example.com<br>
Box 564, Disneyland<br>
USA </address>
<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">
<map name="planetmap">
<{Blank} shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun">
<{Blank} shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury">
<{Blank} shape="circle" coords="124,58,8" href="venus.htm" alt="Venus">
</map>
<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">
<map name="planetmap">
<area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun">
<area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury">
<area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus">
</map>
<{Blank}>
<h1>Internet Explorer 9</h1>
<p>Windows Internet Explorer 9 (abbreviated as IE9) was released to the public on March 14, 2011 at 21:00 PDT.....</p>
</{Blank}>
<article>
<h1>Internet Explorer 9</h1>
<p>Windows Internet Explorer 9 (abbreviated as IE9) was released to the public on March 14, 2011 at 21:00 PDT.....</p>
</article>
The {Blank} tag defines some content aside from the content it is placed in.
The <aside> tag defines some content aside from the content it is placed in.
The <aside> tag defines what?
The <aside> tag defines some content aside from the content it is placed in.
The {Blank} tag content could be placed as a sidebar in an article.
The <aside> content could be placed as a sidebar in an article.
List the <abbr> specific attributes.
There are none
List the <address> specific attributes.
There are none
List the <area> specific attributes.
The <area> specific attributes are:
1. alt
2. coords
3. href
4. hreflang
5. media
6. rel
7. shape
8. target
9. type
List the <article> specific attributes.
There are none
List the <aside> specific attributes.
There are none.
<p>
My family and I visited The Epcot center this summer.
</p>

<{Blank}>
<h4>Epcot Center</h4>
<p>The Epcot Center is a theme park in Disney World, Florida.</p>
</{Blank}>
<p>
My family and I visited The Epcot center this summer.
</p>

<aside>
<h4>Epcot Center</h4>
<p>The Epcot Center is a theme park in Disney World, Florida.</p>
</aside>
The {Blank} tag defines sound, such as music or other audio streams.
The <audio> tag defines sound, such as music or other audio streams.
The <audio> tag defines what?
The <audio> tag defines sound, such as music or other audio streams.
Any text inside the between <{Blank}> and </{Blank}> will be displayed in browsers that do not support the <{Blank}> tag.
Any text inside the between <audio> and </audio> will be displayed in browsers that do not support the <audio> tag.
List the attributes specific to the <audio> tag.
The attributes specific to the <audio> tag are:
1. autoplay
2. controls
3. loop
4. muted
5. src
What does the <audio> autoplay attribute do?
Specifies that the audio will start playing as soon as it is ready
What does the <audio> controls attribute do?
Specifies that audio controls should be displayed (such as a play/pause button etc).
What does the <audio> loop attribute do?
Specifies that the audio will start over again, every time it is finished
What does the <audio> muted attribute do?
Specifies that the audio output should be muted
What does the <audio> src attribute do?
Specifies the URL of the audio file
What does the <audio> preload attribute do?
Specifies if and how the author thinks the audio should be loaded when the page loads
What are the possible values of the <audio> preload attribute?
auto : The author thinks that the browser should load the entire audio file when the page loads

metadata: The author thinks that the browser should load only metadata when the page loads

none: The author thinks that the browser should NOT load the audio file when the page loads
<{Blank} controls preload="none">
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
Your browser does not support the {Blank} element.
</{Blank}>
<audio controls preload="none">
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
The <{Blank}> tag specifies bold text.
The <b> tag specifies bold text.
The <b> tag specifies what?
The <b> tag specifies bold text.
According to the HTML 5 specification, the <{Blank}> tag should be used as a LAST resort when no other tag is more appropriate.
According to the HTML 5 specification, the <b> tag should be used as a LAST resort when no other tag is more appropriate.
An alternative to the <b> tag is to use what?
You can also use the CSS "font-weight" property to set bold text.
What attributes are specific to the <b> tag?
There are none.
<p>This is normal text - <{Blank}>and this is bold text</{Blank}>.</p>
<p>This is normal text - <b>and this is bold text</b>.</p>
The <{Blank}> tag specifies the base URL/target for all relative URLs in a document.
The <base> tag specifies the base URL/target for all relative URLs in a document.
The <base> tag specifies what?
The <base> tag specifies the base URL/target for all relative URLs in a document.
There can be at maximum one <{Blank}> element in a document, and it must be inside the <head> element.
There can be at maximum one <base> element in a document, and it must be inside the <head> element.
Put the <{Blank}> tag as the first element inside the <head> element, so that other elements in the head section uses the information from the <{Blank}> element.
Put the <base> tag as the first element inside the <head> element, so that other elements in the head section uses the information from the <base> element.
If the <base> tag is present, it must have either an {Blank} attribute or a {Blank} attribute, or both.
If the <base> tag is present, it must have either an href attribute or a target attribute, or both.
<head>
<{Blank} href="http://www.w3schools.com/images/" target="_blank">
</head>

<body>
<img src="stickman.gif" width="24" height="39" alt="Stickman">
<a href="http://www.w3schools.com">W3Schools</a>
</body>
<head>
<base href="http://www.w3schools.com/images/" target="_blank">
</head>

<body>
<img src="stickman.gif" width="24" height="39" alt="Stickman">
<a href="http://www.w3schools.com">W3Schools</a>
</body>
What are the specific attributes of the <base> tag?
The specific attributes of the <base> tag are:
1. href
2. target
What does the href attribute of the <base> tag do?
The href attribute of the <base> tag specifies the base URL for all relative URLs in the page
What does the target attribute of the <base> tag do?
The target attribute of the <base> tag specifies the default target for all hyperlinks and forms in the page
What are the 5 possible values for the target attribute of the <base> tag?
The 5 possible values for the target attribute of the <base> tag are:
1) _blank - Opens the linked document in a new window or tab.
2) _self - Opens the linked document in the same frame as it was clicked (this is default)
3) _parent - Opens the linked document in the parent frame
4) _top - Opens the linked document in the full body of the window
5) framename - Opens the linked document in a named frame.
The <{Blank}> tag isolates a part of text that might be formatted in a different direction from other text outside it.
The <bdi> tag isolates a part of text that might be formatted in a different direction from other text outside it.
The <bdi> tag does what?
The <bdi> tag isolates a part of text that might be formatted in a different direction from other text outside it.
bdi stands for what?
bdi stands for Bi-directional Isolation.
The <{Blank}> tag is useful when embedding user-generated content with an unknown directionality.
The <bdi> tag is useful when embedding user-generated content with an unknown directionality.
<ul>
<li>User <{Blank}>hrefs</{Blank}>: 60 points</li>
<li>User <{Blank}>jdoe</{Blank}>: 80 points</li>
<li>User <{Blank}>إيان</{Blank}>: 90 points</li>
</ul>
<ul>
<li>User <bdi>hrefs</bdi>: 60 points</li>
<li>User <bdi>jdoe</bdi>: 80 points</li>
<li>User <bdi>إيان</bdi>: 90 points</li>
</ul>
What are the specific attributes of the <bdi> tag?
There are none
The <{Blank}> tag is used to override the current text direction.
The <bdo> tag is used to override the current text direction.
The <bdo> tag is used for what?
The <bdo> tag is used to override the current text direction.
bdo stands for what?
bdo stands for Bi-Directional Override.
What are the specific attributes of the <bdo> tag?
The specific attributes of the <bdo> tag are as follows:
1. dir - The required dir attribute specifies the text direction of the text inside a <bdo> element
List the possible values of the dir attribute of the <bdo> tag
The possible values of the dir attribute of the <bdo> tag are:
1. ltr: Left-to-right text direction
2. rtl: Right-to-left text direction
The <{Blank}> tag specifies a section that is quoted from another source.
The <blockquote> tag specifies a section that is quoted from another source.
The <blockquote> tag specifies what?
The <blockquote> tag specifies a section that is quoted from another source.
Browsers usually {Blank} <blockquote> elements.
Browsers usually indent <blockquote> elements.
List the attributes specific to the <blockquote> tag.
The attributes specific to the <blockquote> tag are:
1. cite
What does the cite attribute of the <blockquote> tag do?
Specifies the source of the quotation
What is the data type of the cite attribute of the <blockquote> tag?
The data type of the cite attribute of the <blockquote> tag is a URL
The <{Blank}> element contains all the contents of an HTML document, such as text, hyperlinks, images, tables, lists, etc.
The <body> element contains all the contents of an HTML document, such as text, hyperlinks, images, tables, lists, etc.
The <body> element contains what?
The <body> element contains all the contents of an HTML document, such as text, hyperlinks, images, tables, lists, etc.
List the <body> tag specific attributes.
There are none. However in HTML 4, there were several layout attributes that have been deprecated.
<html>
<head>
<title>Title of the document</title>
</head>

<{Blank}>
The content of the document......
</{Blank}>

</html>
<html>
<head>
<title>Title of the document</title>
</head>

<body>
The content of the document......
</body>

</html>