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