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