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