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