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