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