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