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