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