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