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