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