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