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