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