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