Font size
WorksheetsWeb Design HTML Pt. 2
Total questions: 8
Worksheet time: 3mins
Which of the following examples can be used to embed an image in HTML?
<img src="name.jpg" height="325" width="350" alt="Example Image 1">
<src="name.jpg" height="325" width="350" alt="Example Image 1">
<img="name.jpg" height="325" width="350" alt="Example Image 1">
None of the above.
Select the tag(s) that can be used to embed a video in HTML. Choose more than one answer.
<vid></vid>
<iframe></iframe>
<video>
<source>
</video>
<frame></frame>
What is this text called used in a <video> element, if the browser does not support the video?
Source Error Text
Not Found
DNS Text
Fall back Text
On Youtube, you can click the Share button to embed the video using the <iframe> source.
True
False
If your image is in a subfolder relative to the HTML file, you use a _______ path to insert the image in HTML.
absolute
direct
relative
indirect
Select the example(s) that use the absolute path to embed an image in HTML. Choose more than one answer.
<img src="C:\Users\yourname\name.png" alt="Description of Image">
<img src="../yourname/name.png" alt="Description of Image">
<img src="https://www.example.com/images/name.jpg" alt="Description of Image">
<img src="../images/name.jpg" alt="Description of Image">
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.
<img src="..pictures/image.jpg">
<img src="../Pictures/image.jpg">
<img src="..Pictures/image.jpg">
<img src="../pictures/image.jpg">
Select the tag that is used to embed an audio source.
<audio>
<source>
</audio>
<a>
<source>
</a>
<music>
<source>
</music>
<music>
</music>
