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