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