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