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