+ 5
How do you make the items in a list links ?
(See attached code) for each level of the list I tried playing around with where the <a> tag goes, when I look at my output none of my list items are links, what am I doing wrong ?
5 Antworten
+ 1
<ul>
<li><a href="#HTML">HTML</a></li>
...
</ul>
https://www.sololearn.com/learn/HTML/1031/
+ 1
Items in the list are Absolute Referefence links.
<ol>
<li><a href="http://www.soloLearn.com">SoloLearn.com</a></li>
<li><a href="http://www.soloLearn.com">Visit SoloLearn</a></li>
</ol>
0
<li>
<a href="link"> any short content about link
</a>
</li>
and <ol> and < ul> according to the requirement
0
li a {color: blue:}
0
li a{
color:blue;
}