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