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