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