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