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