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