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