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