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