WorksheetsHTML Media Content Tags
Total questions: 9
Worksheet time: 7mins
Which tag(s) use code like this?
<source src="..." type="...">
<iframe>
<audio>
<video>
<img>
<a>
Which tag(s) use this attribute?
src
<source>
<img>
<iframe>
<video>
<audio>
Which tag(s) use this attribute?
controls
<source>
<img>
<iframe>
<video>
<audio>
Which of these generally have an end tag?
<a>
<img>
<video>
<audio>
<source>
Fill in the blank:
<source src="movie.mp4" type=" (a) /mp4">
What attribute is required to show the play button for audio or video?
(a)
Which of these are used when adding a picture to a webpage?
src
alt
img
pic
file
Which of these correctly adds a picture to a webpage?
<img src="tree.jpg" alt="Grand Oak" />
<img src="Grand Oak" alt="tree.jpg" />
<img src="tree.jpg" />
<img alt="tree.jpg" />
What are the reasons that ALT is required in an IMG tag?
An error in the SRC will prevent the image from loading
The ALT text can be voiced by a screen reader
Slow connections may prevent an image from loading
Every tag requires an ALT
