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