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