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