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