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