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