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