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