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