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