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