Skip to main content
Ce sujet a été fermé aux réponses.
Meilleure réponse par Anuhya-Y

@michael_soprano  custom font can be incorporated in both content and HTML template.

3 commentaires

Anuhya-YCommunity AdvisorRéponse
Community Advisor
January 2, 2025

@michael_soprano  custom font can be incorporated in both content and HTML template.

January 20, 2025

Hey Anuhya, 

Can you please point to any documentation around it.

Community Advisor
January 23, 2025

@arvindpodichetti 

Add the custom font as a link and use that in the style tag. Check out below example.

<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sofia">
<style>
body {
  font-family: "Sofia", sans-serif;
}
</style>