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