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