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