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