Is it possible to make links in Unity for web deployment that when clicked, launches a web page?

Is it possible to make links in Unity for web deployment that when clicked, launches a web page?

I know I could put html links at the bottom, but to remove clutter, it’d be cool to put them in the game’s end titles/final credit screen.

The is not such thing as the " html " style link, but you could make your link a extra text and attach a button script to it, from there you an trigger a simple open url script that calls Application.OpenURL with your target url.
Its not nice for flow-text but for a credit roll it should work.

Thanks fffMalzbier!