Chapters 17-19 Quizlet
What audio format was created by Apple and contains high quality sound with a large file size?
.AIFF
Which of these audio formats is NOT supported with the HTML5 <audio> element?
.AIFF
What Microsoft video format file type will play on all Windows computers?
.AVI
This free, high-quality container file type has no patent or licensing restrictions.
.OGG
What audio format works on Windows and includes copy protection features?
.WMA
Which selector will choose the elements in the "annotated" class that the mouse cursor is currently held over?
.annotated:hover {...}
What element is used by HTML5 to mark content that is a self-contained about one topic?
<article>
The __________ element sets apart a section of content that is somewhat related to the main content, but could be removed without affecting the main information.
<aside>
Which of the following examples was most likely used for a <header> before HTML5?
<div id="header"> </div>
Which of the following examples will add a Flash movie into your web page?
<embed src="myMovie.swf" width="400" height="400">
What new element can be used with HTML5 to make image captioning easier?
<figcaption>
What type of element holds the information usually found at the bottom of web pages?
<footer>
With HTM5, it's a good practice to add a _____ element at the start of each section.
<h1>
What type of element holds content for the banner or top part of a web site?
<header>
Which of the following HTML5 elements is equivalent to this older style element? <div id="navigation"></div><!--end of navigation-->
<nav></nav>
What do we suggest adding to your surrounding <figure> image to make annotations easier?
A "class" attribute so we can select the figure and all children with style rules
Which statement best describes the difference between a < div > and a < section >?
A < div > is used for visual styling, and a < section > is used to group related elements together.
Which of these is NOT usually part of an article?
A navigation bar
Annotation
A small note you can add on top of an image
Which of these is not a step to creating an annotation?
Add a height and width element to every image
Which of the following areas is NOT commonly found on a web page?
Audio
Which statement describes the best practice for using the autoplay feature on <audio> and <video>?
Avoid using autoplay in most cases, because your readers may not want sound or videos to start automatically.
Why do we suggest setting the top and left properties with "inline" styles on the list item elements that form part of an annotation?
Because every list item on every figure has a unique location
Which of the following is true of videos directly linked with an anchor <a> element?
Both of these are true
A < section > does not have any identifying marks unless you add a_______ or_________ attribute.
Class, id
Which of the following are valid <video> attributes?
Controls, width and height.
What term is used to describe a pair of integers that counts the number of pixels over and down from the top-left corner of the image?
Coordinate
What kinds of information usually appear at the bottom of a web page?
Copyright, small print, and the author information.
Which property can be used to set the appearance of the mouse icon?
Cursor
If you arrange elements together on the page, it is assumed they are related in:
Meaning
What does the text-indent property control?
The spacing for the first line of text in a block
What effect will the following style have on the paragraph text? <p style="text-indent:-9999px;">
The text will be hidden completely
What effect will the following style have on the paragraph text? <p style="text-indent:10px;">
The text will be indented 10 pixels to the right
What is the main purpose of the < figure > element?
To make image captioning and styling easier and more obvious
What is the purpose of having multiple <source> elements within your <video>?
To provide alternate formats that all browsers might understand
T or F: Web pages can be read by a machine as well as a human.
True
How can you embed YouTube videos in your web page?
When viewing the video, click on Share, then Embed, and copy the resulting HTML code into your HTML page
How would you control the appearance of captions displayed with the <figcaption> element?
Write CSS rules to change the text properties of the <figcaption> element
Why might you apply a "class" attribute to style an <article> instead of an "id" attribute?
You might have more than one <article> on a page, and the "class" can be applied to all of them.
What <video> attribute should you use if you want the video to start playing as soon as the page loads? (This way is not recommended for videos)
autoplay
What <video> attribute should you use to display buttons like pause and play?
controls
Which of the following kinds of elements are found inside a <figure>?
img, other content related tothe image, and figcaption
What <audio> attribute should you use if you want the audio to play endlessly?
loop
What <source> attribute contains the video filename or URL?
src
What attributes can be found on the <img> element?
src, alt, width, and height