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