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