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