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