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