Code-1
<html>
<head>
<title>Relative Link</title>
</head>
<body>
<p>
child folder <a href="Music/17_2.html">17_2</a>
</p>
</body>
</html>
Output
child folder 17_2
Code-2
<html>
<head>
<title>Relative Link</title>
</head>
<body>
<p>
child folder <a href="/Music/17_2.html">17_2</a>
</p>
</body>
</html>
Output
ERR_FILE_NOT_FOUND
What's the significance of extra forward slash /
At beginning of path entered in the value of attribute href