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