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