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