Use on the webTotal Use [ 3273 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/b77c736e4ebc35594afa4a2cb0868a13?family=Crispy+Wide+Thin-MaxGrade" 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/b77c736e4ebc35594afa4a2cb0868a13?family=Crispy+Wide+Thin-MaxGrade);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Crispy Wide Thin-MaxGrade";
src: url("https://db.onlinewebfonts.com/t/b77c736e4ebc35594afa4a2cb0868a13.eot");
src: url("https://db.onlinewebfonts.com/t/b77c736e4ebc35594afa4a2cb0868a13.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/b77c736e4ebc35594afa4a2cb0868a13.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/b77c736e4ebc35594afa4a2cb0868a13.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/b77c736e4ebc35594afa4a2cb0868a13.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/b77c736e4ebc35594afa4a2cb0868a13.svg#Crispy Wide Thin-MaxGrade")format("svg");
}
2CSS rules to specify fonts
font-family: "Crispy Wide Thin-MaxGrade";