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