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