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