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