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