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