HTML Audio Tag

We can use the audio tag display the audio player in web page
<html>
<head>
<title>Audio Tag</title>
</head>
<body>
<audio controls autoplay loop>
<source src='audio.mp3'/>
</audio>
</body>

</html>

No comments:

Post a Comment