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