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