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