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