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