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