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