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