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