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