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