+ 1
How to provide invidiual links to each list in HTML
9 Answers
+ 1
this is how you do it
<li> <a href="file.///C.Html"/a>Games</li>
this is how it should
<li> <a href="file.///C.Html">Games</a></li>
+ 1
Ah okđđ
0
by putting <a> inside <li>
<ul>
<li><a href='#'>link 1</a></li>
<li><a href='#'>link 2</a></li>
...
</ul>
0
Yeah but when I put link into first list item it automatically inserts that link to the second list item
0
did you close the <a> ?
make sure tou have </a> before </li>
0
Yes I did
0
thats the only reason i could think of atm, let us see your code
0
Ah thanks !!đđnow it's working