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