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