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