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