Qualtricsのフォントを変更する
調べたことのメモ。Qualtricsでフォントを変えたいとき。例えば,Google FontsのBIZ UDPGothicを使いたいときには以下のようにCustom CSSに書く。 code:css
@font-face{
font-family: "BIZ UDPGothic", sans-serif;
}
h1, h2, h3, h4, h5, h6, p, div, span, a {
font-family: "BIZ UDPGothic", sans-serif;
}
参考にしたもの