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