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