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