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