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