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