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