0% found this document useful (0 votes)
29 views23 pages

Chapter 8

This document discusses HTML and the <object> element. It notes that the <object> element can represent an external resource, such as an image, nested browsing context, or resource handled by a plugin. It also states that the <object> tag is used to embed objects like multimedia files into web pages, similar to how <video> and <audio> tags embed multimedia. Examples are provided to demonstrate how to embed a PDF and video file using the <object> tag.

Uploaded by

reema alafifi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
29 views23 pages

Chapter 8

This document discusses HTML and the <object> element. It notes that the <object> element can represent an external resource, such as an image, nested browsing context, or resource handled by a plugin. It also states that the <object> tag is used to embed objects like multimedia files into web pages, similar to how <video> and <audio> tags embed multimedia. Examples are provided to demonstrate how to embed a PDF and video file using the <object> tag.

Uploaded by

reema alafifi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 23

Web Technologies

ITSE 2302

Dr. Moamar Elyazgi


Chapter 8
HTML
Hypertext Markup Language

Dr. Moamar Elyazgi


3
4
5
6
7
8
9
10
11
12
13
14
15
16
• The HTML <object> element represents an external resource, which can be treated as
an image, a nested browsing context, or a resource to be handled by a plugin.
• The HTML <object> tag is used for embedding an object within an HTML document.
Use this tag to embed multimedia in your web pages.
• Similarly to <video> and <audio> tags,
HTML object tag enables embedding
multimedia files into the web page.
• You can use it to embed multimedia files
like audio, video, Flash, PDF, ActiveX,
and Java Applets.
• You can also embed another web page
into an HTML document.
• HTML object tag supports all global
17
attributes.
<object type="application/pdf"
data="/media/examples/In-CC0.pdf"
width="250"
height="200">
</object>

<!DOCTYPE html>
<html>
<body>

<object data="movie.mp4" width="400"


height="300"></object>

</body>
</html> 18
19
20
21
22
23

You might also like