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