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