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