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