Home > Enterprise >  How to make a List a hyperlink?
How to make a List a hyperlink?

Time:05-04

I'm working on a link list and I can't get the List to be a hyperlink

<ul>
 <a href="pdf/VPN.pdf" target="_blank"></a> <li>VPN</li> </a> 
</ul>

CodePudding user response:

Try:

<ul>
  <li><a href="pdf/VPN.pdf" target="_blank">VPN</a></li> 
</ul>

In your original markup you had the link outside of the list item, and then an extra </a> tag at the end.

CodePudding user response:

Like this:

<ul>
    <li><a href="#">Link 1</a></li>
    <li><a href="#">Link 2</a></li>
</ul>

li stands for "list item". This is the only tag you can have as a direct child of <ul>...</ul>, so you have to put your links inside the <li>.

  • Related