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