Solved
How do I customize the font in my survey?
My organization brand uses a specific font - "Aaux Next". Is there a Custom CSS code that I can input into my survey look and feel so that this appears in my survey?
Best answer by Zhen
Hi @chrissien
You can insert following css into Custom CSS, just update the selector to meet your biz requirements
```css
h1, h2, h3, h4, h5, h6, p, div, span, a {
font: 16px "Aaux Next", sans-serif;
}
```
Make sure actual font files is imported in HTML page. For example font file is hosted in Google, and we can link the font file like this:
```html
<link href="https://fonts.googleapis.com/css?family=AauxNext" rel="stylesheet">
```
Hope it helps
Cheers,
Zhen
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.


