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