Which element lets you specify the character set that your document uses?
Write the HTML to produce the following list:
Where do you specify which “flavor” of HTML or XHTML you are using for your document?
Write the HTML to draw a horizontal rule that takes up 25% of the width of the browser window.
Write the HTML to produce this text inside a paragraph. The apostrophe is a curly apostrophe, not a straight up and down one.
What is the HTML element you would use for a level four heading? Does it show up larger or smaller than a level five heading?
Where does the <title> element go; in the head
of your document or the body? Where does it show up on the
screen?
Write a <p> containing the word
Hello Use a style attribute on the
paragraph to the word appear in green, with a font size of
22 pixels, in Courier font.
Which of the following are block elements, and which are
inline elements?
<em> <h4> <dl>
<span>
True or False: Every opening tag in XHTML must have a closing tag.
The following questions all refer to the image at the right which
shows the file structure for a web site.
Someone else’s site wants to link to your site. They want the words Great new site to go to file index.html on your site. Write an appropriate link for them, using an absolute pathname.
From the index.html file, the words See SCVWA Schedule should link to file scvwa.html. Write an appropriate link, using a relative pathname.
From the kids.html file, you want the words Latest News to link to the topics.html file. Write an appropriate link, using a relative pathname.
From the topics.html file, you want the words Kids Events to link to the kids.html file. Write an appropriate link, using a relative pathname.