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