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