HTML text links

DukeofPaducah

Gumby and Pokey
Joined
Jan 5, 2024
Posts
326
Hi,
I have been struggling to create links among stories here without much success. Below is the code I am trying.


<a href=“https://www.literotica.com/s/brothers 8” target=“_blank”>Brothers</a>
<a href=“https://www.literotica.com/s/brothers-redux” target=“_blank”>Brothers Redux</a>

This is the code in it’s it entirety. The upper alerts the spell-check that the URL is a typo. The lower displays correctly but tracks to an error page.
It’s not a huge deal to include the links, it’s just that commenters deduct rating points for not doing it. It’s a tough crowd. I can omit it and plead for leniency.
Thank Drusus for his reply please
 
It looks like you're using a non-standard keyboard as the quotation marks you've used aren't the ones that html expects. It's not easy to see with the naked eye, but you've used opening and closing quotation marks instead of a single one. These come from the extended ascii character set and aren't recognized by html. You also had a stray number at the end of the first link which shouldn't be there

If you cut and paste the lines below, it should work.

<a href="https://www.literotica.com/s/brothers" target="_blank">Brothers</a>
<a href="https://www.literotica.com/s/brothers-redux" target="_blank">Brothers Redux</a>
 
I thank you. I will certainly try. I am using an IPad. I would never have discovered that in that in my lifetime.

I’m so happy, if I had some bacon, I would have bacon and eggs, If I had eggs.

Thank you so much.
 
Last edited:
Back
Top