Closed oldoc63 closed 3 years ago
There are two ways you can approach this task. The first way is by using src= as shown below:
<audio controls src="song.mp3"> </audio>
The second way is by using as shown below:
<audio controls> <source src="song.mp3"> </audio>
There are two ways you can approach this task. The first way is by using src= as shown below:
The second way is by using