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