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