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