Review 1 quiz
A bookmark link starts with which symbol in the href attribute?
#
Which image format can support animation?
.gif
Which file extension is used with standard web pages?
.html
What is generally considered the best format to use for color photographs on the web?
.jpg
What is the syntax for an XHTML comment?
<!-- This is a comment -->
How would you create a link to another web page named "page2.html"?
<a href="page2.html">Link to Page 2</a>
Which of the following statements is incorrect?
A lower header element, such as <h4>, should not be used unless all the higher ones, <h1> through <h3>, have been used first.
Which is not part of an XHTML element? a. Anchor b. Start tag c. End tag d. Attributes
Anchor
Which of the following is not an available attribute for the <img> element?
Filename
What should be the first element in any web page?
<html>
What does target="_blank" do when specified in an <a> element?
Tells the browser to open a link in a new window.
What is wrong with the following XHTML code? <a href="www.youtube.com">Visit YouTube</a>
The href attribute is missing the "http://" from the full URL
What will happen if we specify an image's height and width outside of its true original proportion?
The web browser will display a distorted version of the image.
What would a blind person hear in a screen reader in the place of a web image?
Whatever text is specified in the alt attribute
What is the start tag for an individual item in a list?
<li>
What are the XHTML elements related to displaying lists?
<li>, <ul>, <ol>
Which of the following will create a bulleted list?
<ul>
What does HTML stand for?
HyperText Markup Language
What does the element <p> stand for?
Paragraph
What is wrong with the following? <img source="sunset.jpg" alt="Beautiful Sunset" />
Source' should be 'src'