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