Trying to create a simple website using HTML5 and have the following code...
<!DOCTYPE html>
<html lang="en">
<head>
<title>Generic Title</title>
</head>
<body>
<audio controls>
<source src="audio.mp3" type="audio/mp3">
</audio>
</body>
</html>
Then when I try to quickly host the server locally using Flask, I get a error that says...
"GET /audio.mp3 HHTTP/1.1" 404 -
The audio file is in the same directory as the .html file so I don't know why I get this error. Thank you for the help!