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