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