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