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