Open In App

How to autoplay audio on chrome ?

Improve
Improve
Like Article
Like
Save
Share
Report

Here we will learn how to auto-play audio on selected devices in web pages. To load the audio in the web page, we use the <audio> tag.

There are some attribute of this “audio” tag:

  • controls: This feature is used for audio be visible the controls on the web pages. After using this feature, we can pause or play music, high or low music.
  • autoplay: This feature is used for audio to start audio clip when page load. If you run a web page, the audio file will load and just the audio will play automatically.

Example:




<!DOCTYPE html> 
<html
  
<head
    <title
        HTML audio autoplay Attribute 
    </title
</head
  
<body style="text-align: center"
  
    <h1 style="color: green"
        GeeksforGeeks 
    </h1
      
    <h2>HTML audio autoplay Attribute</h2
  
    <audio controls autoplay> 
        <source src="GFG.ogg" type="audio/ogg"
        <source src="GFG.mp3" type="audio/mpeg"
    </audio
</body
  
</html>


Output:


Last Updated : 05 Jun, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads