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