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