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