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