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