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