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