Write embed code for embedding audio file in a web page with the help of <object> tag.
Answers
Answered by
16
Adding multimedia content in a web page is known as embedding. We can add image, audio and video in our web page as multimedia content.
<object data="music.wav" type="audio/quicktime" height="100" width="150">
<param name="autostart" value="true">
<param name="bgcolour" value="#FFFFFF">
<param name="src" value="music.wav">
<param name="align" value="left">
<a href="music.wav"> Music </a>
</object>
_____________________ _ _
▪ shows the type of data whether it is audio, video or image.
▪With the help of and an outlook of file can be visible.
▪Abbreviation of is which is used to set values in objects.
▪If is true then the file will be played by itself.
▪ is almost same at data type. It shows where the data is saved.
▪ will set a position of file in the web page.
▪<a> tag is for by which user can visit to the another web page to play the audio file.
Answered by
0
<object data="music.wav" type="audio/quicktime" height="100" width="150">
<param name="autostart" value="true">
<param name="bgcolour" value="#FFFFFF">
<param name="src" value="music.wav">
<param name="align" value="left">
<a href="music.wav"> Music </a>
</object>
Similar questions