Lesson Guide PDF
Lesson Guide PDF
Embedding Multimedia
Objectives
Students will be able to:
Insert and display multimedia into browser using HTML tags.
Differentiate browsers responsive capability in terms of multimedia integration.
Use different tags in displaying multimedia to the website.
#
1.
Activity Description
Create an HTML file named Multimedia.html
2.
3.
Questions
Use TEXTPAD / NOTEPAD / NOTEPAD++ for your
answers.
<!DOCTYPE html>
<html>
<head>
<title>HTML embed Tag</title>
</head>
<body>
<embed src="/html/yourfile.mid" width="100%"
height="60" >
<noembed><img src="yourimage.gif" alt="Alternative
Media" ></noembed>
</embed>
</body>
</html>
4.
5.
6.
7.
1.
2.
3.
4.
8.
9.
10.
11.
12.
13.
14.
15.
16.
5.
6.
7.
8.
17.
18.
19.
Save and open your file using the three browsers (Mozilla
Firefox, Google Chrome and Internet Explorer).
Download HTML file (USB serial.html) from Moodle.
Insert the following code after the </bgsound> tag:
<object data="data/test.htm" type="text/html"
width="300" height="200">
alt : <a href="data/test.htm">test.htm</a>
</object>
20.
21.
22.