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