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