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