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