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