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