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