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