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