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