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