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