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