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