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