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