" code in the body area. The embed tag can be used to insert various multimedia, and the formats can be Midi, Wav, AIFF, AU, MP3, etc."/> " code in the body area. The embed tag can be used to insert various multimedia, and the formats can be Midi, Wav, AIFF, AU, MP3, etc.">
search
HomeWeb Front-endHTML TutorialHow to add music mp3 in html

In HTML, you can use the embed tag to add music. You only need to add the "" code in the body area. The embed tag can be used to insert various multimedia, and the formats can be Midi, Wav, AIFF, AU, MP3, etc.

How to add music mp3 in html

The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.

You can use the embed tag to add music. The tag defines embedded content, such as plug-ins.

Grammar:

embed src=url

Description: embed can be used to insert various multimedia, the format can be Midi, Wav, AIFF, AU, MP3, etc., Netscape and new versions of IE support it. The url is the audio or video file and its path, which can be a relative path or an absolute path.

Example:

The code is as follows:

<embed src="your.mid">

2. Attribute settings

1. Autoplay:

Syntax: autostart=true , false

Description: This attribute specifies whether the audio or video file will automatically play after downloading.

  • true: The music file will play automatically after downloading;

  • false: The music file will not play automatically after downloading.

Example:

The code is as follows:

<embed src="your.mid" autostart=true>
<embed src="your.mid" autostart=false>

2. Loop playback:

Syntax: loop=positive integer, true, false

Description: This attribute specifies whether the audio or video file is looped and the number of loops.

When the attribute value is a positive integer value, the number of loops of the audio or video file is the same as the positive integer value;

When the attribute value is true, the audio or video file loops;

When the attribute value is false, the audio or video file does not loop.

Example:

The code is as follows:

<embed src="your.mid" autostart=true loop=2>
 <embed src="your.mid" autostart=true loop=true>
 <embed src="your.mid" autostart=true loop=false>

3. Panel display:

Syntax: hidden=ture, no

Description: This attribute specifies whether the control panel is displayed. The default value is no.

  • ture: hide the panel;

  • no: show the panel.

Example:

The code is as follows:

<embed src="your.mid" hidden=ture>
 <embed src="your.mid" hidden=no>

4. Start time:

Syntax: starttime=mm:ss (min. : seconds)

Description: This attribute specifies the time when the audio or video file starts playing. If not defined, play from the beginning of the file.

Example:

The code is as follows:

<embed src="your.mid" starttime="00:10">

5. Volume size:

Syntax: volume=an integer between 0-100

Description: This attribute specifies the volume of audio or video files. If not defined, the system's own settings will be used.

Example:

The code is as follows:

<embed src="your.mid" volume="10">

6. Container attributes:

Syntax: height=# width=

# Description : The value is a positive integer or percentage, and the unit is pixels. This property specifies the height and width of the control panel.

height:控制面板的高度;
 width:控制面板的宽度。

Example:

The code is as follows:

<embed src="your.mid" height=200 width=200>

7. Container unit:

Syntax: units=pixels, en

Description : This attribute specifies the unit of height and width as pixels or en.

Example:

The code is as follows:

<embed src="your.mid" units="pixels" height=200 width=200>
 <embed src="your.mid" units="en" height=200 width=200>

8. Appearance settings:

Syntax: controls=console, smallconsole, playbutton, pausebutton, stopbutton, volumelever Description: This property specifies the appearance of the control panel. The default value is console.

  • console: normal panel;

  • smallconsole: smaller panel;

  • playbutton : Only the play button is displayed;

  • pausebutton: Only the pause button is displayed;

  • stopbutton: Only the stop button is displayed;

  • volumelever: Only the volume adjustment buttons are displayed.

Example:

The code is as follows:

<embed src="your.mid" controls=smallconsole>
 <embed src="your.mid" controls=volumelever>

9. Description text:

Syntax: title=

# Description: # is the text of the description. This attribute specifies the description text of the audio or video file.

Example:

The code is as follows:

<embed src="your.mid" title="第一首歌">

Extended information:

WebM advocacy

Due to the licensing issues of AVC (H.264), the open source camp headed by Chrome, Firefox, and Opera began to waver in their support for AVC. Although these browsers can still support AVC, they also prefer an open source multimedia called WebM. project, which includes a new open source video codec scheme called VP8. Currently VP8 has developed to VP9. WebM as an encapsulated format has the .webm suffix and the video/webm MIME type. For audio, you can use Vorbis/Opus. From a compatibility perspective, Chrome, Firefox, and Opera are very compatible with VP8, but Safari and IE are almost unable to support it.

Open source Ogg

Ogg is almost the same as WebM, open source, and is widely supported on open source platforms. Its video encoding scheme is called Theora (developed from VP3, developed by the Xiph.org Foundation, and can be used in any packaging format), and its audio is Vorbis. The suffix is ​​usually .ogv or .ogg, and the MIME type is video/ogg. In terms of compatibility, Chrome, Firefox, and Opera can support it (but Opera cannot support it on mobile platforms), but Safari and IE are almost unable to support it.

Html5方案

以上的讨论实际上的大前提是:视频基于Html5的

Codecs/container

IE

Firefox

Safari

Chrome

Opera

iPhone

Android

Theora+Vorbis+Ogg

·

3.5+

 

5.0+

10.5+

·

·

H.264+AAC+MP4

9.0+

·

3.0+

5.0+‡

·

3.0+

2.0+

WebM

9.0+*

4.0+

 

6.0+

10.6+

·

2.3+

* IE9 “只有当用户安装了VP8的编解码器时”才能支持VP8。

‡ Google Chrome 2011年宣布 放弃H.264, 但是“还没兑现”。

可以看出现在主流的仍然是MP4(AVC),但是为了解决“开源阵营”对AVC的摇摆不定,可以选择利用video的多源方案,在AVC的基础上额外提供对webm或ogg的支持:

<video poster="movie.jpg" controls>
        <source src="movie.webm" type=&#39;video/webm; codecs="vp8.0, vorbis"&#39;>
        <source src="movie.ogg" type=&#39;video/ogg; codecs="theora, vorbis"&#39;>
        <source src="movie.mp4" type=&#39;video/mp4; codecs="avc1.4D401E, mp4a.40.2"&#39;>
        <p>This is fallback content</p>
</video>

浏览器会根据自己的偏好来选择具体加载那种格式的流媒体文件,当然服务端必须对同一个视频提供多种格式的支持,具体可以这么做:

  1. 提供一个WebM的视频版本(VP8+Vorbis)

  2. 提供一个MP4的视频版本(H.264+AAC(low complexity))

  3. 提供Ogg版本(Theora+Vorbis)

服务端推荐使用nginx,尽量注意MIME类型的配置正确

推荐学习:html视频教程

The above is the detailed content of How to add music mp3 in html. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
HTML `tabindex` for Keyboard NavigationHTML `tabindex` for Keyboard NavigationJul 23, 2025 am 02:59 AM

tabindex is an attribute in HTML that controls whether elements can be focused and sequenced through the keyboard Tab key. There are three common values: tabindex="0" makes the elements focusable and follow the natural order, tabindex="-1" allows focus through JavaScript but not in the Tab sequence, tabindex="1" or higher forces the order to change but is not recommended. The rational use of tabindex requires priority to use semantic tags, avoid abuse of high numerical values, combine ARIA attributes, and test keyboard navigation. Notes include ensuring that elements are not disabled or hidden, considering browser differences, providing: focus

The `details` Element for Expandable ContentThe `details` Element for Expandable ContentJul 23, 2025 am 02:57 AM

Using HTML tags to achieve expandable content without JavaScript, it is suitable for scenarios such as FAQ, help prompts, and settings panels. 1. The basic usage is to use tags as the trigger title; 2. Closed by default, add open attributes to expand by default; 3. Custom styles can be customized through CSS to match the design style; 4. Pay attention to maintaining interactive feedback to improve user experience; 5. Although the accessibility support is good, compatibility issues of old devices still need to be considered.

Building HTML Dashboards with DataBuilding HTML Dashboards with DataJul 23, 2025 am 02:50 AM

The reason why you choose an HTML dashboard when displaying data is that it is simple and practical. First, determine the data source, such as CSV, Excel, database or API, and the front-end can be processed in JSON format; second, use chart libraries such as Chart.js to achieve visualization, such as drawing a bar chart with canvas; then use CSSGrid or Flexbox to layout and add responsive design; finally pay attention to issues such as loading order and data format to ensure the display effect.

Implementing File Uploads in HTML FormsImplementing File Uploads in HTML FormsJul 23, 2025 am 02:48 AM

The key points of implementing file upload function include the use of add controls, setting enctype attributes, back-end reception and security processing, and compatibility optimization. 1. Use and configure accept, multiple, capture and other attributes in HTML to improve the experience; 2. Enctype="multipart/form-data" must be set in the form to ensure the correct data parsing; 3. The backend selects corresponding solutions according to the language such as PHP's $\_FILES, Node.js's multer, and Python's request.files; 4. The file type, limit size, and rename files to ensure security; 5. Pay attention to common problems such as not

HTML `form` `enctype` Attribute for File UploadsHTML `form` `enctype` Attribute for File UploadsJul 23, 2025 am 02:35 AM

ToenablefileuploadsinHTMLforms,settheenctypeattributeto"multipart/form-data".Thisencodingallowsbinarydatatransmissionandisessentialforfileuploads.UseitwithaPOSTmethodintheformtag.Withoutthissetting,theservercannotproperlyreceivefiles.Common

Creating Clickable Image Maps in HTMLCreating Clickable Image Maps in HTMLJul 23, 2025 am 02:35 AM

If you want to click on different image areas to jump to different links on a web page, you can use HTML imagemap. The specific operation is to combine the tag with the usemap attribute, and then define the clickable area with the tag. 1. Use the corresponding map to specify; 2. Use multiple areas to define different shapes in it; 3. Set shape and coords attributes for each, specifying shapes and coordinates respectively. The format of coords varies according to the shape: the rectangle is x1, y1, x2, y2, the circle is cx, cy, r, and the polygon is the coordinates of multiple points arranged in sequence. It is recommended to use an image editing tool or an online generator to get coordinate values. Notes include: Make sure that mapname corresponds to usemap and is responsive.

The HTML `abbr` Tag for Tooltips and AccessibilityThe HTML `abbr` Tag for Tooltips and AccessibilityJul 23, 2025 am 02:29 AM

TheHTML<abbr>tagisidealforaddingtooltipsandimprovingaccessibilityforabbreviations.1.Itdisplaystooltipsbydefaultwhenatitleattributeisincluded.2.Screenreadersannouncethefullexplanationofabbreviations,enhancingaccessibility.3.Itisbestusedf

Building HTML Sitemaps for SEOBuilding HTML Sitemaps for SEOJul 23, 2025 am 02:26 AM

HTML sitemap is helpful for SEO, which indirectly supports SEO by improving crawling efficiency, optimizing user experience and assisting internal link building. Its main function is to provide users with a clearly structured content index page, making it easier for search engines to discover internal pages of the website. The steps to build an HTML sitemap include: classifying by topic or column, avoiding too many links, using a concise list format, and keeping updates. Not all websites require HTML site maps, but it is recommended to add them for large content, complex structure or e-commerce websites.

See all articles

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.