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