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