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