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