Hyperlink To A Specific Tab

How do you hyperlink a button [anywhere on the website] to a specific tab segment?

Platform: Wix Editor
Objective: I have certain images in a ‘WIX Pro Gallery’ which need to be hyperlinked to different tabs in a sub-page.

Failed Attempt: I have tried placing the anchors but the hyperlink only takes me to the first tab. I am unable to find an option to go to the second or third tab through any other method.

Additional information: I am hoping for a solution which will allow me to implement this feature without getting into coding.

You can do something like this:
https://example.com/yourPage?tab=tabName

Then in the code:

import wixLocation from 'wix-location-frontend'
const tab = wixLocation.query.tab    // tabName
$w('#tabs').changeTab(tab)