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