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