Click on image --> open external url

I’ve a tiddler with an image called ‘Logo.png’

Whem I click on the logo, I will open the browser with Google.

What is missing here?
<$link to=“https://www.google.com/” tooltip=“Google Search”>{{Logo.png}}</$link>

Thanks
Stefan

@StS Please note that the “How To” category is not for posting questions.

A post was split to a new topic: Show visible guidance for How To category

The very first line in the documentation for the $link widget (https://tiddlywiki.com/#LinkWidget) says:

The link widget generates links to tiddlers. (Use the HTML <a> element to generate external links).

Thus, for your desired result, use:

<a href="https://www.google.com/" target="_blank" title="Google Search">{{Logo.png}}</a>

Note the use of target="_blank" so that the link opens in a separate tab/window instead of navigating away from your open TiddlyWiki.

@EricShulman Thanks a lot!