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