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