wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Elements, Paths, and Entities

Total questions: 15

Worksheet time: 8mins

Name
Class
Date
1.

How will this line of code display?

<p>A</p><p>B</p><p>C</p>

a)

A

B

C

b)

A B C

c)

ABC

d)

A</p><p>B</p><p>C

2.

Which statement is true about this line of code?

<p>Hello, <em>World!</em></p>

a)

<em> is the closing tag

b)

The code will not work since the sentence ends with !

c)

</p> is the closing tag

d)

The sentence will display as:

Hello,

World!

3.

How will this line of code display?

<em>A</em><em>B</em><em>C</em>

a)

A</em><em>B</em><em>C

b)

A

B

C

c)

A B C

d)

ABC

4.

What is class="class1" in this line of code?

<p class="class1">Hello World.</p>

a)

ID

b)

Embedded style

c)

Attribute

d)

Inline style

5.

In this line of code, "Hello, World.", is the ___ of the ___.

<p>Hello, World.</p>

a)

content, element

b)

attribute, element

c)

value, style

d)

content, attribute

6.

In this line of code, href tells the browser

<link ... href="styles/styles.css>

a)

where to find the style sheet named styles.css.

b)

that the styles.css file is in the same folder as the HTML page.

c)

how many style sheets there are.

d)

to ignore all other CSS style rules.

7.

An absolute path to a file or website looks like:

a)

<a href="www.example.com">

b)

<a href="../example.com">

c)

<a href="http://www.example.com">

d)

<a href="http//:www.example.com">

8.

<a href="/fruit/apples/fuji">

a)

The href path is relative

b)

The href path is absolute

c)

The href path is fixed

d)

The href path is above the current root folder.

9.

The character entity code for the copyright symbol.

a)

#@copy/

b)

&copy;

c)

@copy;

d)

&#copy;

10.

&lt; is the character entity for

a)

<

b)

>

c)

/

d)

@

11.

&gt; is the character entity for

a)

>

b)

<

c)

/

d)

"

12.

&quot;

a)

<

b)

*

c)

#

d)

"

13.

&amp;

a)

&

b)

*

c)

"

d)

#

14.

&apos;

a)

"

b)

'

c)

#

d)

/

15.

The code for making a comment in HTML

a)

<!-- comment -->

b)

/* comment */

c)

<-- comment --/>

d)

/ comment