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