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