I’m trying to link to an H3 heading on a web page on someone else’s website, but not sure how to do it. The h3 heading on the page doesn’t have any css id or class associated with it so I’m not sure if it can be done.
Let’s see if I understand… You would like to create a link on your site that takes the user to a particular page location on another web site. Is that correct?
If so, the target h3 on the other site will need an ID assigned to it to be used as the target of a fragment identifier.
Your link: https://www.anothersite.org/pagename#targetID
The other site: <h3 id="targetID"></h3>