Skip to content
Related Articles
Open in App
Not now

Related Articles

HTML | <audio> loop Attribute

Improve Article
Save Article
  • Last Updated : 15 Jul, 2022
Improve Article
Save Article

The HTML <audio> loop Attribute is used to restart the audio again and again after loading the web page. It contains the Boolean value. This tag is new in HTML 5. 

Syntax:

<audio loop>

Example: 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML Audio loop Attribute
    </title>
</head>
 
<body style="text-align: center">
 
    <h1 style="color: green">
        GeeksforGeeks
    </h1>
    <h2 style="font-family: Impact">
        HTML Audio loop Attribute
    </h2>
    <br>
 
    <audio id="Test_Audio" controls loop>
        <source src=
                        type="audio/ogg">
 
        <source src=
                        type="audio/mpeg">
    </audio>
</body>
 
</html>

Output:

  

Supported Browsers: The browser supported by HTML <audio> loop attribute are listed below:

  • Google Chrome 3.0 and above
  • Edge 12.0 and above
  • Internet Explorer 9.0 and above
  • Firefox 11.0 and above
  • Safari 3.1 and above
  • Opera 10.5 and above
My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!