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