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