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