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