Hi,
I want to use a particular font in my survey specified by my organization. Can anyone please tell me a step by step process on how to use it?
Thanks in advance.
Regards,
Solved
Using a custom font
Best answer by ahmedA
On your survey editor, go to "Look and feel --> Style --> Custom CSS". You'll see a box over there. You can paste all your style related options in it.
Suppose you want to set the font to Roboto, which is hosted on Google Fonts. Then you'll use this code:
@font-face{
font-family: 'Roboto', sans-serif;
src: url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
}
h1, h2, h3, h4, h5, h6, p, div, span, a {
font: 16px "Roboto", sans-serif;
}
The first segment imports your font to the survey. Specifying the name and the location from where it needs to be imported.
The segment
h1, h2, h3, h4, h5, h6, p, div, span, atells Qualtrics where all it should use the font. h1, div, a etc. are html tags to identify elements on the webpage. This should cover most, but if you have custom tags, you'll need to look up the tag in the survey preview and add it here.
If you already have the font file, you can import it into Qualtrics and refer to it based on how the other answer mentioned. If not, then find a source for it. Google Fonts is a good place to start.
Let me know if it works for you.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
