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