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