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