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