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