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