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