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