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