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