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