Use on the webTotal Use [ 4303 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/7131cb932247035788b6f0c6f02df481?family=Cherritt+Expanded+W01+Expan+Rg" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/7131cb932247035788b6f0c6f02df481?family=Cherritt+Expanded+W01+Expan+Rg);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Cherritt Expanded W01 Expan Rg";
src: url("https://db.onlinewebfonts.com/t/7131cb932247035788b6f0c6f02df481.eot");
src: url("https://db.onlinewebfonts.com/t/7131cb932247035788b6f0c6f02df481.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/7131cb932247035788b6f0c6f02df481.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/7131cb932247035788b6f0c6f02df481.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/7131cb932247035788b6f0c6f02df481.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/7131cb932247035788b6f0c6f02df481.svg#Cherritt Expanded W01 Expan Rg")format("svg");
}
2CSS rules to specify fonts
font-family: "Cherritt Expanded W01 Expan Rg";