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