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