Button instead of hyperlink

Hi community,

Does anyone know how to make a button instead of just a hyperlink, like this?

1 Like

In a post?

Like this?

You can create a linked text like you usually do with Markdown
[Like this?](discourse.example.com)

And then you can add <kbd> before that and </kbd> afterwards.

Seems like the text in your example is also bold, so in the end you would have something like

<kbd>**[Sign me up](yourlink)**</kbd>

Sign me up

7 Likes

Awesome, thank you so much!!

Tweaked it a bit to make it open in a new tab:

<kbd><a href="yourlink" target="_blank">Sign me up</a></kbd>
5 Likes