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