Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
559 views
in Q2A Core by
Q2A version: 1.8.3

1 Answer

+1 vote
by

If you have your own theme, then you'd add the <link> tag that Google Fonts gives you to one the head functions in qa-theme.php (e.g. head_links). Then add the CSS part in your CSS file.

If you're using a pre-built theme, perhaps the simplest way would be to add the code in the box in settings, at "Admin > Layout > Custom HTML in <head> section of every page"

For example using the Roboto font:

<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<style>
body { font-family: 'Roboto', sans-serif; }
</style>
by
which are pre-built theme?
...