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