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