Important Notice:

Course Content
Heading Tag / Paragraph Tag
0/2
Horizontal Rules (HR element)
0/1
Font Element
0/1
Image Element
0/1
HTML Basic (Chapter 3) M2-R5.1
About Lesson

HTML5 Tag:-

6. Source Tag:-

किसी भी webpage में कोई audio या video add करने के लिए आप <audio> और <video> tags use करते है। इन tags में src attribute के द्वारा आप उस media file की location specify करते है जिसे आप include करना चाहते है। ये एक simple process है जैसा की आप images को add करते समय करते है।

<audio>

     <source>

     <source>

</audio>

Attribute

Value

Description

src

URL

जब आप <source> tag को video और audio tags के साथ use करते है तो यह attribute media resources की location define करने के लिए use किया जाता है

type

Media type

यह attribute media resource का MIME type define करने के लिए use किया जाता है।

 

7. Embed tag:-

                    यदि आप अपने webpage में कोई multimedia file add करना चाहते है जैसे की audio, video या flash आदि तो इसके लिए HTML आपको <embed> tag provide करती है। इस tag को यूज़ करते हुए आप अपने webpage में आसानी से कोई भी multimedia file add कर सकते है। यदि आपने कोई video add किया है तो उसके लिए play, pause आदि controls browser द्वारा automatically provide किये जाते है।

Attributes

Attributes

Description

src  

इस attribute के द्वारा आप उस file का address देते है जिसे आप webpage में include करना चाहते है।   

height  

इस attribute द्वारा create किये गए panel की height define की जाती है।    

width  

ये attribute create किये गए panel की width define करता है।   

type  

इस attribute से आप include की गयी file का type define कर सकते है।

 

HTML 5 Tag:-

6. Source Tag

The <source> tag is used to embed two or more audio or video files of different media types. The browser may choose the type of file to play based on its media type or codec support.

<audio>

     <source>

     <source>

</audio>

Attribute

Value

Description

src

URL

Specifies the path of the file name to play an audio or video file

type

Media type

Specifies the media type of the linked document

 

7. Embed tag:-

                   If you want to add any multimedia file in your webpage like audio, video or flash etc. then for this HTML provides you <embed> tag. Using this tag you can easily add any multimedia file to your webpage. If you have added a video, then controls like play, pause etc. are automatically provided by the browser.

Attributes

Attributes

Description

src  

Through this attribute you give the address of the file which you want to include in the webpage.

height  

The height of the created panel is defined by this attribute.

width  

This attribute defines the width of the created panel.

type  

With this attribute you can define the type of included file.

error: Content is protected !!