+ 2
Trouble Figuring Out Pervasive Link in HTML
Basic HTML Question! I made an blog for the first project in basic HTML. The link I use in line 18 seems to persist throughout everything that comes after it. If you click anything below that section, they direct to the link on line 18. Tried various ways of closing the section but haven't been able to figure it out. Any help would be appreciated! https://code.sololearn.com/WOIjJteVZq6t
5 Respostas
+ 5
Ben Levine, in all your <li> tags, the <a> tags do not get closed.
Add </a> before the </li> tags.
+ 5
Hey there 😃
It looks like you forgot to close the <a> tag with </a>
+ 3
No problem 😃
+ 1
Thank you Edwin!
+ 1
I noticed and updated. I thought <a> was an open tag so was getting frustrated. Shouldve figured it out when the same thing happened with the next link up after I deleted the last one. Interesting to see how it affected the rest of the document though. Edwin Pratt