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