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