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