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