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