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