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