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