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