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