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