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