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