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