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