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