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