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