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