wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Web Design HTML Pt. 2

Total questions: 8

Worksheet time: 3mins

Name
Class
Date
1.

Which of the following examples can be used to embed an image in HTML?

a)

<img src="name.jpg" height="325" width="350" alt="Example Image 1">

b)

<src="name.jpg" height="325" width="350" alt="Example Image 1">

c)

<img="name.jpg" height="325" width="350" alt="Example Image 1">

d)

None of the above.

2.

Select the tag(s) that can be used to embed a video in HTML. Choose more than one answer.

a)
  • <vid></vid>

b)
  • <iframe></iframe>

c)
  • <video>

    • <source>

  • </video>

d)
  • <frame></frame>

3.

What is this text called used in a <video> element, if the browser does not support the video?

a)

Source Error Text

b)

Not Found

c)

DNS Text

d)

Fall back Text

4.

On Youtube, you can click the Share button to embed the video using the <iframe> source.

a)

True

b)

False

5.

If your image is in a subfolder relative to the HTML file, you use a _______ path to insert the image in HTML.

a)

absolute

b)

direct

c)

relative

d)

indirect

6.

Select the example(s) that use the absolute path to embed an image in HTML. Choose more than one answer.

a)
  • <img src="C:\Users\yourname\name.png" alt="Description of Image">

b)
  • <img src="../yourname/name.png" alt="Description of Image">

c)
d)
7.

The ".." operation is used to level up a folder. Select the example that uses the ".." operation to access the image.jpg inside of a folder named Pictures.

a)

<img src="..pictures/image.jpg">

b)

<img src="../Pictures/image.jpg">

c)

<img src="..Pictures/image.jpg">

d)

<img src="../pictures/image.jpg">

8.

Select the tag that is used to embed an audio source.

a)

<audio>

<source>

</audio>

b)

<a>

<source>

</a>

c)

<music>

<source>

</music>

d)

<music>

</music>