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