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