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