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