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