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