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