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