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