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