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