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