Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Why does this link list not work in HTML?

I was making a list of links for a website that I am creating but it stopped working when I ran it.

I have tried replacing it but I am at a loss for solutions. Nothing worked.

<ul>
  <li><a href="http://www.youtube.com/@Wilson-AM" target="_blank>Youtube (main)</a></li>
  <li><a href="http://www.youtube.com/@MrMagoo8888-" target="_blank>Youtube (Alt)</a><li>
  <li><a href="https://mrmagoo8888.itch.io" target="_blank>Itch.io</a></li>
  <li><a href="https://github.com/MrMagoo8888" target="_blank ">GitHub</a></li>
</ul>

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

Its a syntax error,there are missing closing quotation marks for the target="_blank" attribute in line 1 and 2.

  <ul>

            <li><a href="http://www.youtube.com/@Wilson-AM"target="_blank"> Youtube (main) </a></li>
           <li><a href="http://www.youtube.com/@MrMagoo8888-" target="_blank> Youtube (Alt) </a></li>
            <li><a href="https://mrmagoo8888.itch.io" target="_blank"> Itch.io </a></li>
            <li><a href="https://github.com/MrMagoo8888" target="_blank"> GitHub </a></li>
        
        </ul>
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading