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