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