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