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