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