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