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