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