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