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