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