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