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