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