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