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