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