Web Design Flashcards
What does HTML stand for?
Hyper text markup language
Which file extension is used for starting web pages?
.html
What should be the first element in any web page?
Which is not part of an XHTML element?
Anchor
Ho would you create a link to another web page named “page2.html”?
<a>Link to Page 2</a>
What does the element <p> stand for?</p>
Paragraph
What is the syntax for an XHTML commet?
what bis the start tag for an individual item in a list?
<li>
</li>
Which of the following will create a bulleted list?
<ul></ul>
What is wrong with the following XHTML code?
<a>Visit YouTube</a>
http://
supposed to be “http://www.”
What is wrong with the following?
<img></img>
src
source is supposed to be src
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 is generally considered the best format to use for color photographs on the web?
.jpg
Which of the following is not an available attribute for the <img></img> element?
a) alt
b) filename
c) height
d) width
b) filename
What image format can support animation?
.gif
What does target=”_blank” do when specified in an <a> element?</a>
Tells the browser to open a link in a new window
A bookmark link starts with which symbol in the href attribute?
#
What would a blind person hear in a screen reader in the place of a web image?
Whatever text is specified in an alt attribute
Which of the following statements is incorrect?
a) The <h1> header element should be used only once per page
b) An <h3> header element indicates that something is more important than what is in an <h4> element
c) A lower head element such as <h4>, should not be used unless all the higher ones, <h1> through <h3>, have been used first
d) Generally, a higher header element, such as <h1>, will display in larger text than a lower header element, such as <h3></h3></h1></h3></h1></h4></h4></h3></h1>
c) A lower head element such as <h4>, should not be used unless all the higher ones, <h1> through <h3>, have been used first</h3></h1></h4>
Which of the following is not an XHTML element related to displaying lists?
a) <li>
b)
c) <ul>
d) </ul><ol></ol></li>
b)
What are the valid table elements?