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