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