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