I want to implement a src location like this
<audio src="D:/Js%20Project/audioPlayer/src/sanail.mp3" controls></audio>
but this is not working and I know that
<audio src="./src/sanail.mp3"></audio>
is working.
This is my source code and this is not working
<html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Audio Player</title> </head> <body> <audio src="D:/Js%20Project/audioPlayer/src/sanail.mp3" controls></audio> </body> </html>