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