Copy link to clipboard
Copied
Hi,
I would like to know if we can use Google Fonts to Robohelp 2020 or only use the fonts provided by RH? In case if we can use Google Fonts, can you please let me know how to install and use it?
Copy link to clipboard
Copied
It's all explained here on my site. There is a demo and a download. The download is in 2019 format so just upgrade it.
Using Font Awesome, Google Fonts, @font-face and SVGs in RoboHelp (grainge.org)
________________________________________________________
See www.grainge.org for free Authoring and RoboHelp Information
Copy link to clipboard
Copied
Thank you so much for the solution Peter!
Copy link to clipboard
Copied
RoboHelp does not come with fonts. The font drop-downs show you the fonts installed on your system.
Adding Google fonts to a topic is very easy:
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap');
</style>
Alternatively, you can add it to the template/skin or layoutdiff.css
. and the overrule with a catch-all * and !important
.
Copy link to clipboard
Copied
Thank you so much for the solution Stefan!
Copy link to clipboard
Copied
Peter also just replied 🙂
Have a look at this project. It explains it in much deeper detail!