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