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