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