Web site consists of two pages: Main page
and Courses list
.
Main page
is index.html
and it has a link to the Courses list
.
Courses list
has a link to the Main page
, but it’s incomplete.
Add correct href
attribute to navigate from the Courses list
to the Main page
This task is part of the Full-Stack JavaScript Course
If you have any issues with it, you can ask for community help below the post
Feel free to help others if you’ve already solved the task
courses/list.html
<h2>Courses list</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JS</li>
</ul>
<a>Main page</a>
index.html
<h2>Main page</h2>
<a href="./courses/list.html">Courses list</a>