Qualtricsのフォントを変更する
作成日: 2026/6/18
調べたことのメモ。Qualtricsでフォントを変えたいとき。例えば,Google FontsのBIZ UDPGothicを使いたいときには以下のようにCustom CSSに書く。
code:css
@font-face{
font-family: "BIZ UDPGothic", sans-serif;
src: url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&display=swap');
}
h1, h2, h3, h4, h5, h6, p, div, span, a {
font-family: "BIZ UDPGothic", sans-serif;
}
参考にしたもの
https://community.qualtrics.com/custom-code-12/using-a-custom-font-12855