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