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