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