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