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