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