answersLogoWhite

0

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

User Avatar

Wiki User

10y ago

What else can I help you with?

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 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 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 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; ).