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