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