about.html
about/about.html
`
<!DOCTYPE html>
<html>
<head>
<title>My About Page</title>
</head>
<body>
<h1>About me</h1>
<p>bla bla</p>
<p><a href="../dayseven.html">Back to Home</a></p>
</body>
</html>
**dayseven.html**
<!DOCTYPE html>
<html>
<head>
<title>Day Seven</title>
</head>
<body>
<p>Visit me at <a href="about/about.html">my website</a></p>
</body>
</html>
` when i click on back home link in about.html file. It does't return on home page(dayseven.html), it shows file not found message and
url of page not found page is http://localhost/practice_project4/about/dayseven.html