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