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