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