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