Audio tag is used for adding audio content in website.
For example:-
<!Doctype html>
<html>
<head>
<title>Audio Tag</title>
</head>
<body>
<audio controls>
<source src="audioname.ogg" type="audio/ogg">
<source src="audioname.mp3" type="audio/mpeg">
</audio>
</body>
</html>
Copyright ©2022 coderraj.com. All Rights Reserved.