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