0% found this document useful (0 votes)
182 views9 pages

Week 2 Tags Coursera

This document contains questions about HTML tags and syntax. It asks about topics like valid HTML5 headings, line breaks, links, images, lists and more. The questions test understanding of HTML tags, attributes, paths and embedding multimedia. Correct answers are provided for each multiple choice question to help learn HTML fundamentals.

Uploaded by

kuek9118
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
182 views9 pages

Week 2 Tags Coursera

This document contains questions about HTML tags and syntax. It asks about topics like valid HTML5 headings, line breaks, links, images, lists and more. The questions test understanding of HTML tags, attributes, paths and embedding multimedia. Correct answers are provided for each multiple choice question to help learn HTML fundamentals.

Uploaded by

kuek9118
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 9

10/24/2015 Tags!

 | Coursera

Tags!
29 questions

1. 
The DOM is

an acronym for Direct Object Manipulation

a standard for creating well­structured documents

a standard for transmitting documents across the Internet

2. 
Every well­formed HTML document should include:

doctype, head, body

doctype, header, body

header, nav, footer

alt text

3. 
Which of the following are valid tags for HTML5 headings?

<h5>..</h5>

<heading>..</heading>

<header>..</header>

<h9>..</h9>

https://www.coursera.org/learn/html/exam/a0yq0/tags 1/9
10/24/2015 Tags! | Coursera

4. 
Which tag represents a line break?

<lb>

<nl>

<break>

<br>

5. 
Using the header and footer tags can improve the search engine
optimization for your page.

True

False

6. 
What is wrong with the following code?

<a href = "http://www.umich.edu"></a>

This code is semantically and syntactically correct.

This link doesn't provide any way to click on the link.

The anchor link is self­closing. Remove the </a> and the code
will work.

The alt text attribute is missing from the tag

7. 
Which of the following is not a self­closing tag?

<html>

<br>

https://www.coursera.org/learn/html/exam/a0yq0/tags 2/9
10/24/2015 Tags! | Coursera

<meta>

<DOCTYPE>

8. 
All of the content you wish to appear on the screen should be in which
tag?

<content>

<html>

<main>

<body>

9. 
Which tag is used to create a link?

<anchor>

<a>

<hyper>

<link>

10. 
What is the proper way to include an extra space (non­breaking, so not a
new line) in an HTML document?

&nbsp;

11. 
Which HTML element will number items for you?

<ul>

<dl>

https://www.coursera.org/learn/html/exam/a0yq0/tags 3/9
10/24/2015 Tags! | Coursera

<num>

<ol>

12. 
The tags to create definitions are:

<dl><dt><dd>

<dl><term><def>

<def><dt><li>

<def><dt><dd>

13. 
The <meter> tag will work even in the min and max attributes are
missing.

True

False

14. 
The _____________ element can be used as an easy way to highlight
certain content.

<mark>

15. 
The way to caption an image is to use

caption

alt text within an <img> tag

figcaption

https://www.coursera.org/learn/html/exam/a0yq0/tags 4/9
10/24/2015 Tags! | Coursera

16. 
The ______________ tag allows you to label the contents of an image
element to describe the content. (Only the opening tag is necessary.)

figure

17. 
Most pages have a ___________________ system for moving from
page to page within a site.

navigation

history

semantic

syntactic

18. 
Write the proper code to display an image from a local file called
"Bacon.jpg". The alt text should be "My Dog".

<img src="Bacon.jpg" alt="My Dog">

19. 
Which of the following is a properly formatted link?

<a src = "www.wikipedia.org">wikipedia.org</a>

<a href = "www.wikipedia.org">wikipedia.org</a>

<link href = "www.wikipedia.org">wikipedia.org</a>

<a link = "www.wikipedia.org">wikipedia.org</a>

20. 
What should target = "_blank" do when included in a link tag?

This is not a valid expression.

https://www.coursera.org/learn/html/exam/a0yq0/tags 5/9
10/24/2015 Tags! | Coursera

Opens the link in a in a tab called "_blank"

Opens the link in a new tab or window

21. 
Some tags require special features to work correctly, e.g. alt, href, src,
etc. These extra pieces of information are called ______________

attribute

22. 
Using lists to create a navigation bar may cause

increased search engine optimization (SEO) results

performance issues.

accessibility issues

23. 
Which of the following is an absolute path?

c://WD4E/index.html

http://www.smiletrain.org/the­problem/

index.html

None of the above.

24. 
The relative path should include the top­level domain.

True

False

25. 
https://www.coursera.org/learn/html/exam/a0yq0/tags 6/9
10/24/2015 Tags! | Coursera

.mp3 files load faster than .wav files

True

False

26. 
When you include multimedia elements it is a good idea to include the
___________________ attribute to give page viewers the ability to play,
pause, and stop the music or video.

controls

27. 
What is the correct tag for playing a video? (Opening tag only, make sure
to include the brackets.)

<video>

28. 
Which code properly creates the nested list structure shown here?

Notice that the blueberries and bananas are part of the fruit component.

https://www.coursera.org/learn/html/exam/a0yq0/tags 7/9
10/24/2015 Tags! | Coursera

<ul>   
    <li>Vegetables</li> 
    <li>Fruit
       <ol>       
          <li>Blueberries</li>
    <li>Bananas</li>
       </ol>
    </li>
</ul>

<ul>   
    <li>Vegetables</li> 
    <li>Fruit>/li>
    <ol>       
       <li>Blueberries</li>
       <li>Bananas</li>
    </ol>
</ul>

<ol>   
    <li>Vegetables</li> 
    <li>Fruit
       <ul>       
          <li>Blueberries</li>
    <li>Bananas</li>
       </ul>
    </li>
</ol>

<ol>   
    <li>Vegetables</li> 
    <li>Fruit>/li>
    <ul>       
       <li>Blueberries</li>
       <li>Bananas</li>
    </ul>
</ol>

29. 
https://www.coursera.org/learn/html/exam/a0yq0/tags 8/9
10/24/2015 Tags! | Coursera

Which code will properly insert headings along each row?

Help Center

Submit Quiz

  

(https://accounts.coursera.org/i/zendesk/courserahelp?return_to=https://learner.coursera.help/hc)

https://www.coursera.org/learn/html/exam/a0yq0/tags 9/9

You might also like