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