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