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