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