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