wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

HTML-LINKS

Total questions: 10

Worksheet time: 10mins

Name
Class
Date
1.

Which is the correct syntax for a link?

a)

<a href="url">link text</a>

b)

<a href="url" link text>

c)

<a href=url>link text</a>

d)

<a href="url" link text</a>

2.

By default, the linked page will be displayed in ______________ browser window.


In other words, where will the following link open:

<a href="https://www.w3schools.com/">Visit W3Schools!</a>

a)

the current

b)

a new

c)

the target

d)

a blank

3.

Which of the following can be made into a link?

a)

an image

b)

a list item

c)

an <h1> tag

d)

<p> tags

4.

The correct syntax for a link to an email address is

a)

<a href="mailto:someone@example.com">Send email</a>

b)

<a href="someone@example.com">Send email</a>

c)

<a href=mailto:someone@example.com>Send email</a>

d)

<a href="mailto:someone@example.com">

5.

What is the purpose of the target attribute in the code above?

a)

It tells the browser to make your screen blank when you click the link.

b)

It tells the browser to open the link in the same tab when you click the link.

c)

It tells the browser to open the link in a new tab when you click the link.

d)

It tells the browser to open the link in a different browser when you click the link.

6.
An absolute URL:
a)
contains a full path to a resource, excluding the protocol indicator
b)
contains a full path to a resource, including the protocol indicator
c)
assumes the current document's path so that all references are made from the top of the site's hierarchial directory structure
d)
assumes the current document's path so that all references are made from the document's current directory.
7.
Which of the following do you use to create a hyperlink in an HTML document?
a)
The <html> element
b)
The <hr> element
c)
The <img> element
d)
The <a> element
8.
What is the default appearance of hyperlinks in the browser?
a)
Italic and purple
b)
Blue and underlined
c)
Bold and Italic
d)
Purple and underlined
9.

Why won't this navigation link page work?

a)

The href link should be "Foods.html"

b)

The end tag should be <a> not </a>

c)

The "Foods" page hasn't been made active

d)

The link should be <a href = "Foods.html"

10.

Which attribute contains the URL to a linked web page?

a)

href

b)

type

c)

src

d)

name