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