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