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