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