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