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