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