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