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