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