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