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