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