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