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