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