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