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