I have a specific font that I need to use for my Dante project which is only available for license on WebType.
Webtype is asking me to copy & past the following into the <head> tag of each page I want to use the font (which is site-wide):
<link href="//cloud.webtype.com/css/7b678708-f50c-4abd-837b-e063e39a551d.css" rel="stylesheet" type="text/css" />
I’ve also been instructed to add selected rules to my css file(sample of some of the fonts below):
.alrightsansbold {
font-family: "Alright Sans";
font-style: normal;
font-weight: bold;
}
.alrightsanslight {
font-family: "Alright Sans";
font-style: normal;
font-weight: normal;
}
How can I implement these code snippets so I can utilize this font in my Dante build? Or to ask another way, where should I add these?