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