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