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