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