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