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