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