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