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