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