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