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