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