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