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