Tribute Page anchor tag

Hey all,

I am doing what amounts to a fake wine promo event page for my tribute page. I am trying to link participating wineries in the page to their website. I am getting a link but when I click on them, some of them navigate and others don’t. I have tried several times to make sure the link is correct. Maybe something with my syntax? Thanks.

 <ul>
            <li>DR. KONSTANTIN FRANK WINERY</li>
            <li>9749 Middle Road</li>
            <li>Hammondsport, NY 14840-9612</li>
            <li><a href="http://www.drfrankwines.com/">drfrankwines.com</a></li>
</ul>

I cleaned up your code.
You need to use triple backticks to post code to the forum.
See this post for details.

I don’t see any issues with your code. I’m guessing you’re doing the tribute page on codepen. You should always add the target="_blank" attribute to your links on codepen so they open on a new tab (codepen blocks most pages opened in the previewer).