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