Audio Addition
In case of presentation, text and images, as well as audio-video, it becomes more vivid. This work can be done as well through web media and it is not possible through any other media. Easily create and control audio files using the <embed> tag on the page created by HTML.
Preparation
The desktop should take an audio name folder and save an audio file saved in the audio.mp3 file.
Practicing Project
<Html>
<Head>
<Title> www.tutohost.com </ title>
</ Head>
<Body>
<P>
<Center>
<Embed src = "audio.mp3" height = "35" width = "300"
Controller = "true" loop = "false" autostart = "false">
</ Embed>
<H3 style = "color: # F00"> Click play button and enjoy music. </ H3>
</ Center>
</ P>
</ Body>
</ Html>
Open a notepad in the audio folder created in the desktop by typing the code above and then clicking on Save as from the file menu, save as file name: index.html, Save as type: All files, save index.html file with Mozilla Firefox Appears as shown picture.
Project Analysis
<Embed> tag is used to add audio.
<Embed src = "audio.mp3" height = "35" width = "300"
Controller = "true" loop = "false" autostart = "false">
</ Embed>
Src = "audio.mp3" here src = "............." In this, the link to the audio file was added.
Height = "35" width = "300" sets the size of the audio player displayed in the browser.
The controller = "true" specifies whether the audio player should be displayed on the web page. If the controller = "......... .." is true then the audio player will be displayed and the audio player will not be displayed if false.
Through the loop = "false", the command will be played repeatedly in the form of the loop as the audio file does not play once. Since false is written; So play it once.
By autostart = "false", the audio file will be played as autoplay as soon as the web page is loaded, nor will it be directed to the audio player when the play button is clicked. Since false is written; So it will not be autoplay, audio player will play after clicking on the play button.
Instructions:
If the audio player is not displayed on the web page, then install the QuickTime Player or install the plugin plugins as per the browser's instructions.
In case of presentation, text and images, as well as audio-video, it becomes more vivid. This work can be done as well through web media and it is not possible through any other media. Easily create and control audio files using the <embed> tag on the page created by HTML.
Preparation
The desktop should take an audio name folder and save an audio file saved in the audio.mp3 file.
Practicing Project
<Html>
<Head>
<Title> www.tutohost.com </ title>
</ Head>
<Body>
<P>
<Center>
<Embed src = "audio.mp3" height = "35" width = "300"
Controller = "true" loop = "false" autostart = "false">
</ Embed>
<H3 style = "color: # F00"> Click play button and enjoy music. </ H3>
</ Center>
</ P>
</ Body>
</ Html>
Open a notepad in the audio folder created in the desktop by typing the code above and then clicking on Save as from the file menu, save as file name: index.html, Save as type: All files, save index.html file with Mozilla Firefox Appears as shown picture.
Project Analysis
<Embed> tag is used to add audio.
<Embed src = "audio.mp3" height = "35" width = "300"
Controller = "true" loop = "false" autostart = "false">
</ Embed>
Src = "audio.mp3" here src = "............." In this, the link to the audio file was added.
Height = "35" width = "300" sets the size of the audio player displayed in the browser.
The controller = "true" specifies whether the audio player should be displayed on the web page. If the controller = "......... .." is true then the audio player will be displayed and the audio player will not be displayed if false.
Through the loop = "false", the command will be played repeatedly in the form of the loop as the audio file does not play once. Since false is written; So play it once.
By autostart = "false", the audio file will be played as autoplay as soon as the web page is loaded, nor will it be directed to the audio player when the play button is clicked. Since false is written; So it will not be autoplay, audio player will play after clicking on the play button.
Instructions:
If the audio player is not displayed on the web page, then install the QuickTime Player or install the plugin plugins as per the browser's instructions.
No comments:
Post a Comment