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