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