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