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