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