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