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