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