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