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