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