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