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