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