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