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