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