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