- Open your survey
- Goto Build-view
- Click Settings button
- Select tab Code snippets
- Paste below code to Header-section and change the font name to family= part
- Save
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
- Then goto Style-view
- Open CSS-editor from < / > -button
- Paste the below code to top row of the left hand side code box and replace the font name between hyphens
- Save changes
* {
font-family: 'Raleway', sans-serif !important;
}
If you wish to use different variations of the font your are using e.g. in different heading levels, paste the below code to the CSS-editor in Design-view. Remember to change the font name!
h1 {
font-family: 'Raleway Extra-Bold', sans-serif !important;
}
h2 {
font-family: 'Raleway Bold', sans-serif !important;
}
h3 {
font-family: 'Raleway Medium', sans-serif !important;
}