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