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