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