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