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