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