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