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