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