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