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