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