How to add custom font in dawn theme
1 Like
@NOT1 , follow this tutorial https://bsscommerce.com/shopify/add-custom-font-to-shopify/
Hi @NOT1 ,
Step 1: Download the font you want
Step 2: Upload font to content → File → Copy link
Step 3: Insert this code to file base.css:
@font-face {
font-family: ‘font-name’;
src: url('link_cdn_font') format(‘woff’);
}
body {
font-family: font-name;
}
Hope this can help you ![]()
