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