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