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