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