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