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