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