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