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