When I use vscode to add audio and pictures to an HTML file, I use "open with live server" to debug, but every time the pictures and audio are not loaded. However, when I quit vscode and open it directly with a browser, it can load the pictures and audio normally. I don't know what the reason is, is there a problem with the vscode?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="referrer" content="no-referrer" />
<title>Document</title>
</head>
<body>
<img src="F:\LABORATORY\HMpy\images\me1.png">
<audio src="F:\BaiduNetdiskDownload\women.mp3" controls ></audio>
</body>
</html>