answersLogoWhite

0


Best Answer

You can embed music in HTML only in HTML5. HTML5 introduced the tag named <Audio> for that.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

9y ago

Multimedia files could be easily embedded on an HTML page. You could do that by <img>, <audio>, <video> tag.

This answer is:
User Avatar

User Avatar

Wiki User

9y ago

Embedding a song in HTML has been possible in it's latest version only. It can be done via the <audio> tag.

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

You can't using HTML.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you embed music in an HTML document?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is the HTML code for music?

The HTML code for music is &lt;audio&gt;. This tag is only present in HTML 5 and helps to embed music into the page.


How do you embed Garage Band in your HTML file?

You cannot embed a program into an HTML file


How do you dis- embed video from HTML page?

You can easily dis-embed a video from HTML page. You just need to remove the embed tag from it.


Can you open a videoaudio file using the anchor tag in HTML?

Yes. Doing this will cause the file to open in a separate window; it will not create background music or embed the video in the webpage itself.


What should be the last command in any HTML document?

The last command in any HTML document is a closing HTML tag. Just before it is the closing BODY tag. &lt;/BODY&gt; &lt;HTML&gt;

Related questions

How do you embed video games on an HTML?

you need to find the games HTML code and copy and paste it into your HTML document.


What is the HTML code for music?

The HTML code for music is &lt;audio&gt;. This tag is only present in HTML 5 and helps to embed music into the page.


How do you import a flash game in a HTML document?

You will need to embed the SWF file in your HTML using the following code:


How do you insert a video from the internet into an HTML document?

In order to insert a video, you can paste the link into HTML. This link will cause the video to embed in webpage.


How do you embed Garage Band in your HTML file?

You cannot embed a program into an HTML file


How do you embed google doc in a webpage?

Depending on what kind of document you're publishing, you may be able to convert it to .HTML, which is a Web-page compatible file format. Then you can embed it into your page.


How do you make a loop wav in HTML?

You add the following to your embed code: loop="true" &lt;html&gt; &lt;embed src="my_file.wav" hidden="true" loop="true"&gt;&lt;/embed&gt; &lt;/html&gt;


How do you dis- embed video from HTML page?

You can easily dis-embed a video from HTML page. You just need to remove the embed tag from it.


How can you put music on your website?

here's an HTML music tag: &lt;embed src="titleofthesong.wma" autostart="true" loop="true" width="2" height="0"&gt; &lt;/embed&gt; This adds background music. NOTE: You must have this file saved in the folder that your page is in.


How do you put your music on A WEBSITE?

here's an HTML music tag: &lt;embed src="titleofthesong.wma" autostart="true" loop="true" width="2" height="0"&gt; &lt;/embed&gt; This adds background music. NOTE: You must have this file saved in the folder that your page is in.


How do you call a wave file using HTML?

You have two options: you can embed the file (so it plays like background music) or you can link to the file (so the user has to open it separately).To embed-To link-click here for music


How do you insert video to HTML document?

In HTML4, you would use the embed tag ( &lt;embed src="mymovie.ext"&gt;), while in HTML5, you would simply use the video tag ( &lt;video&gt;&lt;source src="mymovie.ext" /&gt;&lt;/video&gt; ).