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