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